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 eric.smith
Recipients Amol Sharma, eric.smith
Date 2020-05-24.22:05:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1590357929.07.0.667893261789.issue40760@roundup.psfhosted.org>
In-reply-to
Content
That's not what I see:

$ python3.8
Python 3.8.0b4 (default, Sep 15 2019, 15:56:44)
[GCC 7.4.0] on cygwin
Type "help", "copyright", "credits" or "license" for more information.
>>> some_dict = {3:4}
>>> {k: v/5 for k, v in some_dict.items()}
{3: 0.8}
>>>

Granted, this is a beta of 3.8 on cygwin, so maybe it's an outlier.

Can you show us a similar interactive session so we can see exactly what platform you're on, and what results you're seeing?
History
Date User Action Args
2020-05-24 22:05:29eric.smithsetrecipients: + eric.smith, Amol Sharma
2020-05-24 22:05:29eric.smithsetmessageid: <1590357929.07.0.667893261789.issue40760@roundup.psfhosted.org>
2020-05-24 22:05:29eric.smithlinkissue40760 messages
2020-05-24 22:05:28eric.smithcreate