summaryrefslogtreecommitdiffstats
path: root/Lib/collections.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-05-12 09:09:11 (GMT)
committerGeorg Brandl <georg@python.org>2013-05-12 09:09:11 (GMT)
commitce654f48aac8c060ee3188f597e4fb78b2839abb (patch)
treeac5d70691a8aea217dccd26f2072aa2a9353f99c /Lib/collections.py
parenta6df938fefd5b51d85a45cf3f29f60ee7bb21edf (diff)
downloadcpython-ce654f48aac8c060ee3188f597e4fb78b2839abb.zip
cpython-ce654f48aac8c060ee3188f597e4fb78b2839abb.tar.gz
cpython-ce654f48aac8c060ee3188f597e4fb78b2839abb.tar.bz2
Issue #15535: Fix pickling of named tuples.
Diffstat (limited to 'Lib/collections.py')
-rw-r--r--Lib/collections.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/collections.py b/Lib/collections.py
index eb20243..33aedd9 100644
--- a/Lib/collections.py
+++ b/Lib/collections.py
@@ -281,6 +281,10 @@ class {typename}(tuple):
'Return self as a plain tuple. Used by copy and pickle.'
return tuple(self)
+ def __getstate__(self):
+ 'Exclude the OrderedDict from pickling'
+ return None
+
{field_defs}
'''