docstring update
svn: r12758
This commit is contained in:
parent
873f830306
commit
dddcb10dd3
@ -43,8 +43,17 @@ from gen.lib.attrtype import AttributeType
|
||||
class Attribute(SecondaryObject, PrivacyBase, SourceBase, NoteBase):
|
||||
"""
|
||||
Provide a simple key/value pair for describing properties.
|
||||
Used to store descriptive information.
|
||||
|
||||
Used by the Person and Family objects to store descriptive information.
|
||||
In GEDCOM only used for Persons:
|
||||
Individual attributes should describe situations that may be permanent or
|
||||
temporary (start at some date, end at some date, etc.), may be associated
|
||||
to a place (a position held, residence, etc.) or may not (eye colour,
|
||||
height, caste, profession, etc.). They may have sources and notes and
|
||||
media.
|
||||
Compare with :class:`~gen.lib.event.Event`
|
||||
|
||||
GRAMPS at the moment does not support this GEDCOM Attribute structure.
|
||||
"""
|
||||
|
||||
def __init__(self, source=None):
|
||||
|
@ -50,6 +50,12 @@ class Event(SourceBase, NoteBase, MediaBase, AttributeBase,
|
||||
The Event record is used to store information about some type of
|
||||
action that occurred at a particular place at a particular time,
|
||||
such as a birth, death, or marriage.
|
||||
|
||||
A possible definition: Events are things that happen at some point in time
|
||||
(that we may not know precisely, though), at some place, may involve
|
||||
several people (witnesses, officers, notaries, priests, etc.) and may
|
||||
of course have sources, notes, media, etc.
|
||||
Compare this with attribute: :class:`~gen.lib.attribute.Attribute`
|
||||
"""
|
||||
|
||||
def __init__(self, source=None):
|
||||
|
Loading…
Reference in New Issue
Block a user