diff options
author | Filipe Laíns <lains@riseup.net> | 2022-12-23 20:19:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-23 20:19:16 (GMT) |
commit | 1ecfd1ebf1f53ef6ac82085b25ed09952b470d4e (patch) | |
tree | 6cfa474d68231d22dff829066c5295639b4e5569 /Lib/compileall.py | |
parent | 745545b5bb847023f90505bf9caa983463413780 (diff) | |
download | cpython-1ecfd1ebf1f53ef6ac82085b25ed09952b470d4e.zip cpython-1ecfd1ebf1f53ef6ac82085b25ed09952b470d4e.tar.gz cpython-1ecfd1ebf1f53ef6ac82085b25ed09952b470d4e.tar.bz2 |
bpo-40447: accept all path-like objects in compileall.compile_file (#19883)
Signed-off-by: Filipe Laíns <lains@archlinux.org>
Signed-off-by: Filipe Laíns <lains@riseup.net>
Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
Diffstat (limited to 'Lib/compileall.py')
-rw-r--r-- | Lib/compileall.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/compileall.py b/Lib/compileall.py index 330a907..a388931 100644 --- a/Lib/compileall.py +++ b/Lib/compileall.py @@ -154,8 +154,8 @@ def compile_file(fullname, ddir=None, force=False, rx=None, quiet=0, "in combination with stripdir or prependdir")) success = True - if quiet < 2 and isinstance(fullname, os.PathLike): - fullname = os.fspath(fullname) + fullname = os.fspath(fullname) + stripdir = os.fspath(stripdir) if stripdir is not None else None name = os.path.basename(fullname) dfile = None |