This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gvanrossum
Recipients Mark.Shannon, gvanrossum, levkivskyi, rhettinger, serhiy.storchaka, yselivanov
Date 2018-01-20.15:54:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAP7+vJLjrf-PmsMZLoeWsb0zThiAJHTKZAhQM-v5rEGNZ0_1qw@mail.gmail.com>
In-reply-to <1516434590.8.0.467229070634.issue32550@psf.upfronthosting.co.za>
Content
There is very little code that depends on __annotations__ at all, and none
of it is very subtle. All actual type checking is done by separate tools
(mypy, pytype, PyCharm) that don't import the code and don't care about
__annotations__. The __annotations__ variable exists so that other people
*may* do useful stuff with it, e.g. design run-time type-checking
decorators. So please don't worry about interning.
History
Date User Action Args
2018-01-20 15:54:30gvanrossumsetrecipients: + gvanrossum, rhettinger, Mark.Shannon, serhiy.storchaka, yselivanov, levkivskyi
2018-01-20 15:54:30gvanrossumlinkissue32550 messages
2018-01-20 15:54:30gvanrossumcreate