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 Anthony Sottile
Recipients Anthony Sottile, barry, gregory.p.smith, jwilk, miss-islington, nascheme, njs, rhettinger, serhiy.storchaka, steven.daprano, terry.reedy, vstinner, xiang.zhang
Date 2019-04-13.20:22:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1555186962.76.0.839900373944.issue34850@roundup.psfhosted.org>
In-reply-to
Content
Should this also produce warnings for `list` / `dict` / `set` literals?

```
$ python3.8
Python 3.8.0a3 (default, Mar 27 2019, 03:46:44) 
[GCC 7.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> x is []
False
>>> x is {}
False
>>> x is {1, 2}
False
```
History
Date User Action Args
2019-04-13 20:22:42Anthony Sottilesetrecipients: + Anthony Sottile, barry, nascheme, rhettinger, terry.reedy, gregory.p.smith, vstinner, jwilk, steven.daprano, njs, serhiy.storchaka, xiang.zhang, miss-islington
2019-04-13 20:22:42Anthony Sottilesetmessageid: <1555186962.76.0.839900373944.issue34850@roundup.psfhosted.org>
2019-04-13 20:22:42Anthony Sottilelinkissue34850 messages
2019-04-13 20:22:42Anthony Sottilecreate