Message340173
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
``` |
|
Date |
User |
Action |
Args |
2019-04-13 20:22:42 | Anthony Sottile | set | recipients:
+ 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:42 | Anthony Sottile | set | messageid: <1555186962.76.0.839900373944.issue34850@roundup.psfhosted.org> |
2019-04-13 20:22:42 | Anthony Sottile | link | issue34850 messages |
2019-04-13 20:22:42 | Anthony Sottile | create | |
|