diff options
author | Jack Diederich <jackdied@gmail.com> | 2009-04-01 04:27:09 (GMT) |
---|---|---|
committer | Jack Diederich <jackdied@gmail.com> | 2009-04-01 04:27:09 (GMT) |
commit | e0cbd69659ab4a270abf166fef3d01cb560d01f7 (patch) | |
tree | 342093772dda39bde977a75868a3e3186a7934cc /Lib/test/test_functools.py | |
parent | e59482ec9a44a9cf8c5e066c340dc9ed78399712 (diff) | |
download | cpython-e0cbd69659ab4a270abf166fef3d01cb560d01f7.zip cpython-e0cbd69659ab4a270abf166fef3d01cb560d01f7.tar.gz cpython-e0cbd69659ab4a270abf166fef3d01cb560d01f7.tar.bz2 |
Merged revisions 70931 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70931 | jack.diederich | 2009-03-31 19:46:48 -0400 (Tue, 31 Mar 2009) | 1 line
#5228: add pickle support to functools.partial
........
Diffstat (limited to 'Lib/test/test_functools.py')
-rw-r--r-- | Lib/test/test_functools.py | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Lib/test/test_functools.py b/Lib/test/test_functools.py index 84e974a8..dedfb1e 100644 --- a/Lib/test/test_functools.py +++ b/Lib/test/test_functools.py @@ -2,6 +2,7 @@ import functools import unittest from test import support from weakref import proxy +import pickle @staticmethod def PythonPartial(func, *args, **keywords): @@ -19,6 +20,9 @@ def capture(*args, **kw): """capture all positional and keyword arguments""" return args, kw +def signature(part): + """ return the signature of a partial object """ + return (part.func, part.args, part.keywords, part.__dict__) class TestPartial(unittest.TestCase): @@ -141,6 +145,12 @@ class TestPartial(unittest.TestCase): join = self.thetype(''.join) self.assertEqual(join(data), '0123456789') + def test_pickle(self): + f = self.thetype(signature, 'asdf', bar=True) + f.add_something_to__dict__ = True + f_copy = pickle.loads(pickle.dumps(f)) + self.assertEqual(signature(f), signature(f_copy)) + class PartialSubclass(functools.partial): pass @@ -148,11 +158,13 @@ class TestPartialSubclass(TestPartial): thetype = PartialSubclass - class TestPythonPartial(TestPartial): thetype = PythonPartial + # the python version isn't picklable + def test_pickle(self): pass + class TestUpdateWrapper(unittest.TestCase): def check_wrapper(self, wrapper, wrapped, |