Explorar o código

Merge pull request #7135 from ThomasWaldmann/remove-py37-compat-code-1.2

remove python < 3.7 compatibility code
TW %!s(int64=2) %!d(string=hai) anos
pai
achega
97261dbb22
Modificáronse 1 ficheiros con 1 adicións e 5 borrados
  1. 1 5
      src/borg/helpers/fs.py

+ 1 - 5
src/borg/helpers/fs.py

@@ -18,9 +18,6 @@ from ..logger import create_logger
 logger = create_logger()
 logger = create_logger()
 
 
 
 
-py_37_plus = sys.version_info >= (3, 7)
-
-
 def ensure_dir(path, mode=stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO, pretty_deadly=True):
 def ensure_dir(path, mode=stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO, pretty_deadly=True):
     """
     """
     Ensures that the dir exists with the right permissions.
     Ensures that the dir exists with the right permissions.
@@ -184,8 +181,7 @@ def scandir_keyfunc(dirent):
 
 
 
 
 def scandir_inorder(*, path, fd=None):
 def scandir_inorder(*, path, fd=None):
-    # py37+ supports giving an fd instead of a path (no full entry.path in DirEntry in that case!)
-    arg = fd if fd is not None and py_37_plus else path
+    arg = fd if fd is not None else path
     return sorted(os.scandir(arg), key=scandir_keyfunc)
     return sorted(os.scandir(arg), key=scandir_keyfunc)