diff options
author | Edgar Ramírez Mondragón <16805946+edgarrmondragon@users.noreply.github.com> | 2024-02-07 05:22:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-07 05:22:47 (GMT) |
commit | 60375a38092b4d4dec9a826818a20adc5d4ff2f7 (patch) | |
tree | 95e0c5ec3b38d3a5a373568e4bb4c4b239a3b28c | |
parent | 3f71c416c085cfaed49ef325f70eb374a4966256 (diff) | |
download | cpython-60375a38092b4d4dec9a826818a20adc5d4ff2f7.zip cpython-60375a38092b4d4dec9a826818a20adc5d4ff2f7.tar.gz cpython-60375a38092b4d4dec9a826818a20adc5d4ff2f7.tar.bz2 |
gh-115114: Add missing slash to file URI prefix `file:/` (#115115)
Add missing slash to file URI prefix `file:/`
-rw-r--r-- | Doc/whatsnew/3.13.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index e034d34..c75d440 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -391,7 +391,7 @@ pathlib (Contributed by Barney Gale in :gh:`89812`.) * Add :meth:`pathlib.Path.from_uri`, a new constructor to create a :class:`pathlib.Path` - object from a 'file' URI (``file:/``). + object from a 'file' URI (``file://``). (Contributed by Barney Gale in :gh:`107465`.) * Add :meth:`pathlib.PurePath.full_match` for matching paths with |