diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2014-02-18 17:49:41 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2014-02-18 17:49:41 (GMT) |
commit | 026019f89bf6669593d458dfa3ad9fc7b8d78bc2 (patch) | |
tree | a8d346de9c8006259fe7879d7c1b60aab62cca18 /Doc/whatsnew/3.4.rst | |
parent | ee227ae7cf1f88e865c168a8f13743e92ade1938 (diff) | |
download | cpython-026019f89bf6669593d458dfa3ad9fc7b8d78bc2.zip cpython-026019f89bf6669593d458dfa3ad9fc7b8d78bc2.tar.gz cpython-026019f89bf6669593d458dfa3ad9fc7b8d78bc2.tar.bz2 |
Mangle __parameters in __annotations__ dict properly. Issue #20625.
Diffstat (limited to 'Doc/whatsnew/3.4.rst')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index faa35f0..1b71c57 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -1704,6 +1704,10 @@ Changes in the Python API informative :exc:`ValueError` rather than the previous more mysterious :exc:`AttributeError` (:issue:`9177`). +* Parameter names in ``__annotations__`` dict are now mangled properly, + similarly to ``__kwdefaults__``. (Contributed by Yury Selivanov in + :issue:`20625`). + Changes in the C API -------------------- |