summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2018-10-25 15:26:38 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2018-10-25 15:26:37 (GMT)
commitd03b7757811ae51277f8ed399a9a0fd78dfd3425 (patch)
tree938010059a3be971925c6d0fbc71e3b63b697076 /Misc
parente25d5fc18e6c4b0062cd71b2eb1fd2d5eb5e2d3d (diff)
downloadcpython-d03b7757811ae51277f8ed399a9a0fd78dfd3425.zip
cpython-d03b7757811ae51277f8ed399a9a0fd78dfd3425.tar.gz
cpython-d03b7757811ae51277f8ed399a9a0fd78dfd3425.tar.bz2
bpo-31047: Fix ntpath.abspath to trim ending separator (GH-10082)
Regression in b0bf51b32240369ccb736dc32ff82bb96f375402.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-10-25-09-37-03.bpo-31047.kBbX8r.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-10-25-09-37-03.bpo-31047.kBbX8r.rst b/Misc/NEWS.d/next/Library/2018-10-25-09-37-03.bpo-31047.kBbX8r.rst
new file mode 100644
index 0000000..1e47bf4
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-10-25-09-37-03.bpo-31047.kBbX8r.rst
@@ -0,0 +1,2 @@
+Fix ``ntpath.abspath`` regression where it didn't remove a trailing
+separator on Windows. Patch by Tim Graham.