diff options
author | Carl Meyer <carl@oddbird.net> | 2012-01-12 09:03:22 -0700 |
---|---|---|
committer | Carl Meyer <carl@oddbird.net> | 2012-01-12 09:03:22 -0700 |
commit | 5bdc19ccbde3934a05b11a0d0edf50d3b31e930d (patch) | |
tree | 03c9204a5425f5ec3413f69ea09d1ad835b12ac1 | |
parent | 99ffa8c49df4baa9681d649ce0b19b6d3b5ad99a (diff) | |
download | factory-boy-5bdc19ccbde3934a05b11a0d0edf50d3b31e930d.tar factory-boy-5bdc19ccbde3934a05b11a0d0edf50d3b31e930d.tar.gz |
Correct out-of-date docstring.
-rw-r--r-- | factory/containers.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/factory/containers.py b/factory/containers.py index 68e1e9f..497e98c 100644 --- a/factory/containers.py +++ b/factory/containers.py @@ -122,7 +122,8 @@ class DeclarationDict(dict): """Updates the DeclarationDict from a class definition dict. Takes into account all public attributes and OrderedDeclaration - instances; ignores all classmethods and attributes starting with '_'. + instances; ignores all class/staticmethods and private attributes + (starting with '_'). Returns a dict containing all remaining elements. """ |