summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2018-12-26 18:45:33 (GMT)
committerEthan Furman <ethan@stoneleaf.us>2018-12-26 18:45:33 (GMT)
commit34ae04f74dcf4ac97d07c3e82eaf8f619d80cedb (patch)
treed56bc8cc27a87025e8fb480eb47249534a136511 /Misc
parent3a81076bbf899b1a549f005dd9299e7ae0946321 (diff)
downloadcpython-34ae04f74dcf4ac97d07c3e82eaf8f619d80cedb.zip
cpython-34ae04f74dcf4ac97d07c3e82eaf8f619d80cedb.tar.gz
cpython-34ae04f74dcf4ac97d07c3e82eaf8f619d80cedb.tar.bz2
Speed-up building enums by value, e.g. http.HTTPStatus(200) (#11318)
bpo-35585: Speed up enum by-value lookup
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-12-26-02-28-00.bpo-35585.Lkzd3Z.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-12-26-02-28-00.bpo-35585.Lkzd3Z.rst b/Misc/NEWS.d/next/Library/2018-12-26-02-28-00.bpo-35585.Lkzd3Z.rst
new file mode 100644
index 0000000..247a4ae
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-12-26-02-28-00.bpo-35585.Lkzd3Z.rst
@@ -0,0 +1 @@
+Speed-up building enums by value, e.g. http.HTTPStatus(200).