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 gvanrossum, levkivskyi
Date 2016-09-07.23:46:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473291977.39.0.491615344216.issue27985@psf.upfronthosting.co.za>
In-reply-to
Content
I played with the REPL, and found this:

>>> del __annotations__
del __annotations__
>>> x: int = 0
x: int = 0
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: __annotations__ not found
>>> 

I would expect this to re-create __annotations__.
History
Date User Action Args
2016-09-07 23:46:17gvanrossumsetrecipients: + gvanrossum, levkivskyi
2016-09-07 23:46:17gvanrossumsetmessageid: <1473291977.39.0.491615344216.issue27985@psf.upfronthosting.co.za>
2016-09-07 23:46:17gvanrossumlinkissue27985 messages
2016-09-07 23:46:17gvanrossumcreate