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 marco.buttu
Recipients marco.buttu
Date 2016-01-22.19:06:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1453489566.62.0.462459552998.issue26182@psf.upfronthosting.co.za>
In-reply-to
Content
I saw that async and await will become keywords in Python 3.7 :

https://www.python.org/dev/peps/pep-0492/#deprecation-plans

I enabled the deprecation warnings in Python 3.5.1 and Python 3.6 dev, and I noticed that assigning to async or await does not issue any deprecation warning: 

$ python -Wd -c "import sys; print(sys.version); async = 33"
3.5.1 (default, Jan 21 2016, 19:59:28)
[GCC 4.8.4]

$ python -Wd -c "import sys; print(sys.version); async = 33"
3.6.0a0 (default:4b434a4770a9, Jan 12 2016, 13:01:29)
[GCC 4.8.4]
History
Date User Action Args
2016-01-22 19:06:06marco.buttusetrecipients: + marco.buttu
2016-01-22 19:06:06marco.buttusetmessageid: <1453489566.62.0.462459552998.issue26182@psf.upfronthosting.co.za>
2016-01-22 19:06:06marco.buttulinkissue26182 messages
2016-01-22 19:06:06marco.buttucreate