* src/RelLib.py: Finish up with actual MALE, FEMALE, and UNKNOWN
svn: r4009
This commit is contained in:
parent
6463227a6e
commit
a6b36faaa8
@ -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
|
||||
|
@ -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):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user