]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-46678: Fix Invalid cross device link in Lib/test/support/import_helper.py (GH...
authorJason Wilkes <notarealdeveloper@gmail.com>
Tue, 8 Feb 2022 01:09:07 +0000 (17:09 -0800)
committerGitHub <noreply@github.com>
Tue, 8 Feb 2022 01:09:07 +0000 (17:09 -0800)
In [Lib/test/support/import_helper.py](https://github.com/python/cpython/blob/master/Lib/test/support/import_helper.py), the function `make_legacy_pyc` makes a call to `os.rename` which can fail when the source and target live on different devices. This happens (for example) when `PYTHONPYCACHEPREFIX` is set to a directory anywhere on disk, while a ramdisk is mounted on `/tmp` (the latter of which is the default on various Linux distros). Replacing `os.rename` with `shutil.move` fixes this.

Automerge-Triggered-By: GH:brettcannon
Lib/test/support/import_helper.py
Misc/NEWS.d/next/Tests/2022-02-07-12-40-45.bpo-46678.zfOrgL.rst [new file with mode: 0644]

index 9bce29895249ae5dd7042b46cab49d2cfe4a5ed5..5201dc84cf6df4ea2d25a8480750dd0c29e7f1ea 100644 (file)
@@ -3,6 +3,7 @@ import _imp
 import importlib
 import importlib.util
 import os
+import shutil
 import sys
 import unittest
 import warnings
@@ -59,7 +60,7 @@ def make_legacy_pyc(source):
     pyc_file = importlib.util.cache_from_source(source)
     up_one = os.path.dirname(os.path.abspath(source))
     legacy_pyc = os.path.join(up_one, source + 'c')
-    os.rename(pyc_file, legacy_pyc)
+    shutil.move(pyc_file, legacy_pyc)
     return legacy_pyc
 
 
diff --git a/Misc/NEWS.d/next/Tests/2022-02-07-12-40-45.bpo-46678.zfOrgL.rst b/Misc/NEWS.d/next/Tests/2022-02-07-12-40-45.bpo-46678.zfOrgL.rst
new file mode 100644 (file)
index 0000000..e369cb1
--- /dev/null
@@ -0,0 +1,3 @@
+The function ``make_legacy_pyc`` in ``Lib/test/support/import_helper.py`` no
+longer fails when ``PYTHONPYCACHEPREFIX`` is set to a directory on a
+different device from where tempfiles are stored.