diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-08-17 17:11:17 +0200 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-11-15 00:01:25 +0100 |
commit | ac90ac4b3425cc79c164b3dc0bd13901bf814ff7 (patch) | |
tree | 6cd182c79997b8f979dff964617d4c54c680521e /factory | |
parent | b152ba79ab355c231b6e5fd852bad546e06208d9 (diff) | |
download | factory-boy-ac90ac4b3425cc79c164b3dc0bd13901bf814ff7.tar factory-boy-ac90ac4b3425cc79c164b3dc0bd13901bf814ff7.tar.gz |
[py3] Various python3-compatibility fixes.
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
Diffstat (limited to 'factory')
-rw-r--r-- | factory/containers.py | 2 | ||||
-rw-r--r-- | factory/declarations.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/factory/containers.py b/factory/containers.py index 46a647f..4ceb07f 100644 --- a/factory/containers.py +++ b/factory/containers.py @@ -62,7 +62,7 @@ class LazyStub(object): def __str__(self): return '<LazyStub for %s with %s>' % ( - self.__target_class.__name__, self.__attrs.keys()) + self.__target_class.__name__, list(self.__attrs.keys())) def __fill__(self): """Fill this LazyStub, computing values of all defined attributes. diff --git a/factory/declarations.py b/factory/declarations.py index 77000f2..50a826f 100644 --- a/factory/declarations.py +++ b/factory/declarations.py @@ -129,7 +129,7 @@ class Iterator(OrderedDeclaration): self.iterator = iter(iterator) def evaluate(self, sequence, obj, containers=()): - return self.iterator.next() + return next(self.iterator) class InfiniteIterator(Iterator): |