Message231752
methodcaller and attrgetter objects seem to be picklable, but in fact the pickling is erroneous:
>>> import operator, pickle
>>> pickle.loads(pickle.dumps(operator.methodcaller("foo")))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: methodcaller needs at least one argument, the method name
>>> pickle.loads(pickle.dumps(operator.attrgetter("foo")))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: attrgetter expected 1 arguments, got 0
When looking at the pickle disassembly, it seems that the argument to the constructor is indeed not pickled.
>>> import pickletools; pickletools.dis(pickle.dumps(operator.methodcaller("foo")))
0: \x80 PROTO 3
2: c GLOBAL 'operator methodcaller'
25: q BINPUT 0
27: ) EMPTY_TUPLE
28: \x81 NEWOBJ
29: q BINPUT 1
31: . STOP
highest protocol among opcodes = 2 |
|
Date |
User |
Action |
Args |
2014-11-27 06:33:03 | Antony.Lee | set | recipients:
+ Antony.Lee |
2014-11-27 06:33:03 | Antony.Lee | set | messageid: <1417069983.84.0.769912375651.issue22955@psf.upfronthosting.co.za> |
2014-11-27 06:33:03 | Antony.Lee | link | issue22955 messages |
2014-11-27 06:33:03 | Antony.Lee | create | |
|