diff options
author | Ivan Levkivskyi <levkivskyi@gmail.com> | 2018-05-09 01:23:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-09 01:23:46 (GMT) |
commit | 43d12a6bd82bd09ac189069fe1eb40cdbc10a58c (patch) | |
tree | 571c07dc83eb43ce93d4e3f12499f04c0ca84648 /Misc | |
parent | 0904f766e116c269675317e11368a4d29eef0bc6 (diff) | |
download | cpython-43d12a6bd82bd09ac189069fe1eb40cdbc10a58c.zip cpython-43d12a6bd82bd09ac189069fe1eb40cdbc10a58c.tar.gz cpython-43d12a6bd82bd09ac189069fe1eb40cdbc10a58c.tar.bz2 |
bpo-28556: Minor fixes for typing module (GH-6732)
This also fixes https://bugs.python.org/issue33420
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-05-08-16-43-42.bpo-28556._xr5mp.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-05-08-16-43-42.bpo-28556._xr5mp.rst b/Misc/NEWS.d/next/Library/2018-05-08-16-43-42.bpo-28556._xr5mp.rst new file mode 100644 index 0000000..8ed4658 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-05-08-16-43-42.bpo-28556._xr5mp.rst @@ -0,0 +1,3 @@ +Minor fixes in typing module: add annotations to ``NamedTuple.__new__``, +pass ``*args`` and ``**kwds`` in ``Generic.__new__``. Original PRs by +Paulius Ĺ arka and Chad Dombrova. |