commit | ce654f48aac8c060ee3188f597e4fb78b2839abb | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun May 12 11:09:11 2013 +0200 |
committer | Georg Brandl <georg@python.org> | Sun May 12 11:09:11 2013 +0200 |
tree | ac5d70691a8aea217dccd26f2072aa2a9353f99c | |
parent | a6df938fefd5b51d85a45cf3f29f60ee7bb21edf [diff] [blame] |
Issue #15535: Fix pickling of named tuples.
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 @@ '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} '''