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 methane
Recipients methane, rhettinger, serhiy.storchaka, tim.peters
Date 2017-11-07.07:54:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1510041286.33.0.213398074469.issue31954@psf.upfronthosting.co.za>
In-reply-to
Content
Quick microbench:

```
$ ./python -m perf timeit --compare-to=`pwd`/python.master -s 'd = dict.fromkeys(range(1000))' -- "for i in range(1000):
  del d[i]
  d[i]=i
"
python.master: ..................... 124 us +- 9 us
python: ..................... 116 us +- 0 us

Mean +- std dev: [python.master] 124 us +- 9 us -> [python] 116 us +- 0 us: 1.06x faster (-6%)
```
History
Date User Action Args
2017-11-07 07:54:46methanesetrecipients: + methane, tim.peters, rhettinger, serhiy.storchaka
2017-11-07 07:54:46methanesetmessageid: <1510041286.33.0.213398074469.issue31954@psf.upfronthosting.co.za>
2017-11-07 07:54:46methanelinkissue31954 messages
2017-11-07 07:54:46methanecreate