diff options
author | HongWeipeng <961365124@qq.com> | 2019-11-26 22:36:02 (GMT) |
---|---|---|
committer | Ethan Furman <ethan@stoneleaf.us> | 2019-11-26 22:36:02 (GMT) |
commit | 0b41a922f95f62b620d5a197b9f2ed8e4bb70730 (patch) | |
tree | d9db36ebe3acbb32ae944e5cffd291232a1e0687 /Misc/NEWS.d/next/Library | |
parent | e563a155be60fc0757914f87c8138f10de00bb16 (diff) | |
download | cpython-0b41a922f95f62b620d5a197b9f2ed8e4bb70730.zip cpython-0b41a922f95f62b620d5a197b9f2ed8e4bb70730.tar.gz cpython-0b41a922f95f62b620d5a197b9f2ed8e4bb70730.tar.bz2 |
bpo-38045: Improve the performance of _decompose() in enum.py (GH-16483)
* Improve the performance of _decompose() in enum.py
Co-Authored-By: Brandt Bucher <brandtbucher@gmail.com>
Diffstat (limited to 'Misc/NEWS.d/next/Library')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-09-30-12-09-41.bpo-38045.VDRtd3.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-09-30-12-09-41.bpo-38045.VDRtd3.rst b/Misc/NEWS.d/next/Library/2019-09-30-12-09-41.bpo-38045.VDRtd3.rst new file mode 100644 index 0000000..e7e515f --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-09-30-12-09-41.bpo-38045.VDRtd3.rst @@ -0,0 +1 @@ +Improve the performance of :func:`enum._decompose` in :mod:`enum`. Patch by hongweipeng. |