commit | 13abda41003daf599587991d8291f0dacf6e9519 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Tue Oct 08 16:29:52 2019 +0300 |
committer | GitHub <noreply@github.com> | Tue Oct 08 16:29:52 2019 +0300 |
tree | f86d3dea6c84355c49f36bea32bf1ed846f8b447 | |
parent | b690a2759e62d9ee0b6ea1b20e8f7e4b2cdbf8bb [diff] [blame] |
bpo-38405: Make nested subclasses of typing.NamedTuple pickleable. (GH-16641)
diff --git a/Lib/typing.py b/Lib/typing.py index 2c75a76..0e842ff 100644 --- a/Lib/typing.py +++ b/Lib/typing.py
@@ -1593,7 +1593,7 @@ '_fields', '_field_defaults', '_field_types', '_make', '_replace', '_asdict', '_source') -_special = ('__module__', '__name__', '__qualname__', '__annotations__') +_special = ('__module__', '__name__', '__annotations__') class NamedTupleMeta(type):