Commit fd9cd24a authored by Victor Stinner's avatar Victor Stinner

Issue #13374: Use Unicode filenames instead of bytes filenames

getcwdb() => getcwd()
parent 62aa4d08
......@@ -82,7 +82,7 @@ class TestUnicodeFiles(unittest.TestCase):
self.assertFalse(os.path.exists(filename2 + '.new'))
def _do_directory(self, make_name, chdir_name):
cwd = os.getcwdb()
cwd = os.getcwd()
if os.path.isdir(make_name):
rmtree(make_name)
os.mkdir(make_name)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment