summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2012-02-27 10:47:44 (GMT)
committerÉric Araujo <merwok@netwok.org>2012-02-27 10:47:44 (GMT)
commit40e0f35ad54ba6b626a46ee693a2074990ae607e (patch)
tree69fd3b9849e31b4ab244299b4b8ac590efa90fc0 /Misc
parent0509d9418ab894e4ea0137206685d91a02943577 (diff)
downloadcpython-40e0f35ad54ba6b626a46ee693a2074990ae607e.zip
cpython-40e0f35ad54ba6b626a46ee693a2074990ae607e.tar.gz
cpython-40e0f35ad54ba6b626a46ee693a2074990ae607e.tar.bz2
Fix comparison bug with 'rc' versions in packaging.version (#11841).
I added some tests in 2105ab8553b7 and found no bug, but it turns out that the doctest is not actually run. While converting the doctest to unittest style, I stumbled upon this bug again and this time applied the code patch provided by Filip Gruszczyński.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5fdd7b2..07599ad 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -508,6 +508,9 @@ Core and Builtins
Library
-------
+- Issue #11841: Fix comparison bug with 'rc' versions in packaging.version.
+ Patch by Filip Gruszczyński.
+
- Issue #13447: Add a test file to host regression tests for bugs in the
scripts found in the Tools directory.