diff options
author | Guido van Rossum <guido@python.org> | 2015-05-22 17:14:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2015-05-22 17:14:11 (GMT) |
commit | 46dbb7d1032c19163f37785509b8f5b3004416e8 (patch) | |
tree | 85f29b8330b82cefcf01b50a12a2cd9f28ccf801 /Misc | |
parent | 569db2c9f6d1adc787c6f44a9b2f4e4d9bbde272 (diff) | |
download | cpython-46dbb7d1032c19163f37785509b8f5b3004416e8.zip cpython-46dbb7d1032c19163f37785509b8f5b3004416e8.tar.gz cpython-46dbb7d1032c19163f37785509b8f5b3004416e8.tar.bz2 |
Preliminary typing.py, anticipating provisional acceptance of PEP 484.
There area bunch of TODOs here, but the biggest (not mentioned in the
file) is that I'm going to take out __instancecheck__ and
__subclasscheck__. However my personal schedule is such that I
probably won't have time for these before Larry tags beta 1. But I
will try -- this commit is mostly to make sure that typing.py doesn't
completely miss the train.
PS. I'm tracking issues at https://github.com/ambv/typehinting/issues.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -58,6 +58,8 @@ Core and Builtins Library ------- +- Issue #23973: PEP 484: Add the typing module. + - Issue #20035: Replaced the ``tkinter._fix`` module used for setting up the Tcl/Tk environment on Windows with a private function in the ``_tkinter`` module that makes no permanent changes to the environment. |