summaryrefslogtreecommitdiff
path: root/factory/containers.py
diff options
context:
space:
mode:
authorThomas Goirand <thomas@goirand.fr>2013-05-12 05:38:51 +0000
committerThomas Goirand <thomas@goirand.fr>2013-05-12 05:38:51 +0000
commit8e5ee2fb19058336afb5af61486e17f2603b56cb (patch)
treea73e60fd2443584475f4371083644373a8004192 /factory/containers.py
parent91b2da50daf5a0e95eb7cfdb1fa3668ed2925201 (diff)
downloadfactory-boy-8e5ee2fb19058336afb5af61486e17f2603b56cb.tar
factory-boy-8e5ee2fb19058336afb5af61486e17f2603b56cb.tar.gz
Fixed differences with upstream branch.
Diffstat (limited to 'factory/containers.py')
-rw-r--r--factory/containers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/factory/containers.py b/factory/containers.py
index c8be431..ee2ad82 100644
--- a/factory/containers.py
+++ b/factory/containers.py
@@ -124,7 +124,7 @@ class DeclarationDict(dict):
return False
elif isinstance(value, declarations.OrderedDeclaration):
return True
- return (not name.startswith("_"))
+ return (not name.startswith("_") and not name.startswith("FACTORY_"))
def update_with_public(self, d):
"""Updates the DeclarationDict from a class definition dict.
@@ -167,7 +167,7 @@ class PostGenerationDeclarationDict(DeclarationDict):
class LazyValue(object):
"""Some kind of "lazy evaluating" object."""
- def evaluate(self, obj, containers=()):
+ def evaluate(self, obj, containers=()): # pragma: no cover
"""Compute the value, using the given object."""
raise NotImplementedError("This is an abstract method.")