[Python-checkins] cpython: #4489 Make fd based rmtree work on bytes

hynek.schlawack python-checkins at python.org
Mon Jun 25 13:32:47 CEST 2012


http://hg.python.org/cpython/rev/2e2329aeb5c1
changeset:   77767:2e2329aeb5c1
user:        Hynek Schlawack <hs at ox.cx>
date:        Mon Jun 25 13:27:31 2012 +0200
summary:
  #4489 Make fd based rmtree work on bytes

files:
  Lib/shutil.py           |  3 +++
  Lib/test/test_shutil.py |  9 +++++++++
  2 files changed, 12 insertions(+), 0 deletions(-)


diff --git a/Lib/shutil.py b/Lib/shutil.py
--- a/Lib/shutil.py
+++ b/Lib/shutil.py
@@ -426,6 +426,9 @@
         def onerror(*args):
             raise
     if _use_fd_functions:
+        # While the unsafe rmtree works fine on bytes, the fd based does not.
+        if isinstance(path, bytes):
+            path = os.fsdecode(path)
         # Note: To guard against symlink races, we use the standard
         # lstat()/open()/fstat() trick.
         try:
diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py
--- a/Lib/test/test_shutil.py
+++ b/Lib/test/test_shutil.py
@@ -108,6 +108,15 @@
         self.tempdirs.append(d)
         return d
 
+    def test_rmtree_works_on_bytes(self):
+        tmp = self.mkdtemp()
+        victim = os.path.join(tmp, 'killme')
+        os.mkdir(victim)
+        write_file(os.path.join(victim, 'somefile'), 'foo')
+        victim = os.fsencode(victim)
+        self.assertIsInstance(victim, bytes)
+        shutil.rmtree(victim)
+
     def test_rmtree_errors(self):
         # filename is guaranteed not to exist
         filename = tempfile.mktemp()

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list