* src/RelLib.py: Finish up with actual MALE, FEMALE, and UNKNOWN

svn: r4009
This commit is contained in:
Alex Roitman 2005-02-01 04:16:02 +00:00
parent f7df43643f
commit 778aa84846
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2005-01-30 Alex Roitman <shura@alex.neuro.umn.edu>
* src/RelLib.py: Finish up with actual MALE, FEMALE, and UNKNOWN
attributes of the Person class.
2005-01-31 Don Allingham <dallingham@users.sourceforge.net> 2005-01-31 Don Allingham <dallingham@users.sourceforge.net>
* various: Change Person.male, Person.female, and Person.unkwown * various: Change Person.male, Person.female, and Person.unkwown
to Person.MALE, Person.FEMALE and Person.UNKNOWN to Person.MALE, Person.FEMALE and Person.UNKNOWN

View File

@ -321,9 +321,9 @@ class Person(PrimaryObject,SourceNote):
@sort: serialize, unserialize, get_*, set_*, add_*, remove_* @sort: serialize, unserialize, get_*, set_*, add_*, remove_*
""" """
unknown = 2 UNKNOWN = 2
male = 1 MALE = 1
female = 0 FEMALE = 0
def __init__(self): def __init__(self):
""" """