[issue38405] Nested subclasses of typing.NamedTuple are not pickleable

2019-10-09 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue38405] Nested subclasses of typing.NamedTuple are not pickleable

2019-10-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 87db4d343c9609137f6e62aa3595db610a33842c by Serhiy Storchaka in branch '3.7': [3.7] bpo-38405: Make nested subclasses of typing.NamedTuple pickleable. (GH-16641). (GH-16674) https://github.com/python/cpython/commit/87db4d343c9609137f6e62aa359

[issue38405] Nested subclasses of typing.NamedTuple are not pickleable

2019-10-09 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +16255 pull_request: https://github.com/python/cpython/pull/16674 ___ Python tracker ___

[issue38405] Nested subclasses of typing.NamedTuple are not pickleable

2019-10-08 Thread miss-islington
miss-islington added the comment: New changeset 10b475a151dc35c8ca4047331d591130973e914d by Miss Islington (bot) in branch '3.8': bpo-38405: Make nested subclasses of typing.NamedTuple pickleable. (GH-16641) https://github.com/python/cpython/commit/10b475a151dc35c8ca4047331d591130973e914d -

[issue38405] Nested subclasses of typing.NamedTuple are not pickleable

2019-10-08 Thread miss-islington
Change by miss-islington : -- pull_requests: +16238 pull_request: https://github.com/python/cpython/pull/16655 ___ Python tracker ___ __

[issue38405] Nested subclasses of typing.NamedTuple are not pickleable

2019-10-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 13abda41003daf599587991d8291f0dacf6e9519 by Serhiy Storchaka in branch 'master': bpo-38405: Make nested subclasses of typing.NamedTuple pickleable. (GH-16641) https://github.com/python/cpython/commit/13abda41003daf599587991d8291f0dacf6e9519

[issue38405] Nested subclasses of typing.NamedTuple are not pickleable

2019-10-08 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +16226 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16641 ___ Python tracker ___

[issue38405] Nested subclasses of typing.NamedTuple are not pickleable

2019-10-08 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : Example: >>> from typing import NamedTuple >>> import pickle >>> class A: ... class B(NamedTuple): ... x: int ... >>> pickle.dumps(A.B) Traceback (most recent call last): File "", line 1, in _pickle.PicklingError: Can't pickle : attribute l