[issue45280] Empty typing.NamedTuple creation is not tested

2021-09-26 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Nikita! ✨ 🍰 ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue45280] Empty typing.NamedTuple creation is not tested

2021-09-26 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset d452b2963ba91d6bce29bb96733ed8bd1c0448b0 by Miss Islington (bot) in branch '3.10': bpo-45280: Add test for empty `NamedTuple` in `test_typing` (GH-28559) (GH-28571) https://github.com/python/cpython/commit/d452b2963ba91d6bce29bb96733ed8bd1c0448b0

[issue45280] Empty typing.NamedTuple creation is not tested

2021-09-26 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 08e387ab82331230d7f6608e949723d8a8e09229 by Miss Islington (bot) in branch '3.9': bpo-45280: Add test for empty `NamedTuple` in `test_typing` (GH-28559) (GH-28570) https://github.com/python/cpython/commit/08e387ab82331230d7f6608e949723d8a8e09229

[issue45280] Empty typing.NamedTuple creation is not tested

2021-09-26 Thread miss-islington
Change by miss-islington : -- pull_requests: +26954 pull_request: https://github.com/python/cpython/pull/28571 ___ Python tracker ___ __

[issue45280] Empty typing.NamedTuple creation is not tested

2021-09-26 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +26953 pull_request: https://github.com/python/cpython/pull/28570 ___ Python tracker _

[issue45280] Empty typing.NamedTuple creation is not tested

2021-09-26 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset f56268a2cd38b3fe2be1e4361d3d8b581e73559b by Nikita Sobolev in branch 'main': bpo-45280: Add test for empty `NamedTuple` in `test_typing` (GH-28559) https://github.com/python/cpython/commit/f56268a2cd38b3fe2be1e4361d3d8b581e73559b -- nosy:

[issue45280] Empty typing.NamedTuple creation is not tested

2021-09-25 Thread Nikita Sobolev
Change by Nikita Sobolev : -- keywords: +patch pull_requests: +26942 stage: -> patch review pull_request: https://github.com/python/cpython/pull/28559 ___ Python tracker ___ _

[issue45280] Empty typing.NamedTuple creation is not tested

2021-09-24 Thread Nikita Sobolev
New submission from Nikita Sobolev : While working on `mypy` support of `NamedTuple`s (https://github.com/python/mypy/issues/11047), I've noticed that currently when testing `typing.NamedTuple` cases like: 1. `N = NamedTuple('N')` and 2. ```python class N(NamedTuple): ... ``` are igno