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