From: Serhiy Storchaka Date: Wed, 9 Oct 2019 09:56:32 +0000 (+0300) Subject: [3.7] bpo-38405: Make nested subclasses of typing.NamedTuple pickleable. (GH-16641... X-Git-Tag: v3.7.6rc1~120 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=87db4d343c9609137f6e62aa3595db610a33842c;p=thirdparty%2FPython%2Fcpython.git [3.7] bpo-38405: Make nested subclasses of typing.NamedTuple pickleable. (GH-16641). (GH-16674) (cherry picked from commit 13abda41003daf599587991d8291f0dacf6e9519) --- diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py index 4871fb7c4ddc..d8abc0ac96a1 100644 --- a/Lib/test/test_typing.py +++ b/Lib/test/test_typing.py @@ -2441,6 +2441,9 @@ class NewTypeTests(BaseTestCase): class NamedTupleTests(BaseTestCase): + class NestedEmployee(NamedTuple): + name: str + cool: int def test_basics(self): Emp = NamedTuple('Emp', [('name', str), ('id', int)]) @@ -2564,14 +2567,25 @@ class XMethBad2(NamedTuple): self.assertEqual(Emp.__name__, 'Emp') self.assertEqual(Emp._fields, ('name', 'id')) - def test_pickle(self): + def test_copy_and_pickle(self): global Emp # pickle wants to reference the class by name - Emp = NamedTuple('Emp', [('name', str), ('id', int)]) - jane = Emp('jane', 37) - for proto in range(pickle.HIGHEST_PROTOCOL + 1): - z = pickle.dumps(jane, proto) - jane2 = pickle.loads(z) - self.assertEqual(jane2, jane) + Emp = NamedTuple('Emp', [('name', str), ('cool', int)]) + for cls in Emp, CoolEmployee, self.NestedEmployee: + with self.subTest(cls=cls): + jane = cls('jane', 37) + for proto in range(pickle.HIGHEST_PROTOCOL + 1): + z = pickle.dumps(jane, proto) + jane2 = pickle.loads(z) + self.assertEqual(jane2, jane) + self.assertIsInstance(jane2, cls) + + jane2 = copy(jane) + self.assertEqual(jane2, jane) + self.assertIsInstance(jane2, cls) + + jane2 = deepcopy(jane) + self.assertEqual(jane2, jane) + self.assertIsInstance(jane2, cls) class IOTests(BaseTestCase): diff --git a/Lib/typing.py b/Lib/typing.py index 021ef9552e65..dea7babaf792 100644 --- a/Lib/typing.py +++ b/Lib/typing.py @@ -1343,7 +1343,7 @@ _prohibited = ('__new__', '__init__', '__slots__', '__getnewargs__', '_fields', '_field_defaults', '_field_types', '_make', '_replace', '_asdict', '_source') -_special = ('__module__', '__name__', '__qualname__', '__annotations__') +_special = ('__module__', '__name__', '__annotations__') class NamedTupleMeta(type): diff --git a/Misc/NEWS.d/next/Library/2019-10-08-11-18-40.bpo-38405.0-7e7s.rst b/Misc/NEWS.d/next/Library/2019-10-08-11-18-40.bpo-38405.0-7e7s.rst new file mode 100644 index 000000000000..ee346a30ec41 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-10-08-11-18-40.bpo-38405.0-7e7s.rst @@ -0,0 +1 @@ +Nested subclasses of :class:`typing.NamedTuple` are now pickleable.