summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2014-09-22 07:49:16 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2014-09-22 07:49:16 (GMT)
commita66e3885fb7bafbe69d738f500a63bd6718b0076 (patch)
tree08fa3d6c998549cd24da7694eb9df1d06cf21129 /Misc/NEWS
parente6c27c9f6b381f1970e8639d298e87446dbf1a61 (diff)
downloadcpython-a66e3885fb7bafbe69d738f500a63bd6718b0076.zip
cpython-a66e3885fb7bafbe69d738f500a63bd6718b0076.tar.gz
cpython-a66e3885fb7bafbe69d738f500a63bd6718b0076.tar.bz2
Issue #22278: Fix urljoin problem with relative urls, a regression observed
after changes to issue22118 were submitted. Patch contributed by Demian Brecht and reviewed by Antoine Pitrou.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7240842..c26eaa6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -137,6 +137,9 @@ Core and Builtins
Library
-------
+- Issue #22278: Fix urljoin problem with relative urls, a regression observed
+ after changes to issue22118 were submitted.
+
- Issue #22415: Fixed debugging output of the GROUPREF_EXISTS opcode in the re
module. Removed trailing spaces in debugging output.