* 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 6463227a6e
commit a6b36faaa8
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>
* various: Change Person.male, Person.female, and Person.unkwown
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_*
"""
unknown = 2
male = 1
female = 0
UNKNOWN = 2
MALE = 1
FEMALE = 0
def __init__(self):
"""