[Python-checkins] r64456 - python/trunk/Lib/test/test_posix.py
facundo.batista
python-checkins at python.org
Sun Jun 22 18:11:35 CEST 2008
Author: facundo.batista
Date: Sun Jun 22 18:11:34 2008
New Revision: 64456
Log:
Trying to see if the @ in a path is causing the issue in the
shutil.rmtree() in the trunk.loewis-sun buildbot.
Modified:
python/trunk/Lib/test/test_posix.py
Modified: python/trunk/Lib/test/test_posix.py
==============================================================================
--- python/trunk/Lib/test/test_posix.py (original)
+++ python/trunk/Lib/test/test_posix.py Sun Jun 22 18:11:34 2008
@@ -236,7 +236,7 @@
if hasattr(posix, 'getcwd'):
dirname = 'getcwd-test-directory-0123456789abcdef-01234567890abcdef'
curdir = os.getcwd()
- base_path = os.path.abspath(test_support.TESTFN) + '.getcwd'
+ base_path = os.path.abspath(test_support.TESTFN[1:]) + '.getcwd'
try:
os.mkdir(base_path)
More information about the Python-checkins
mailing list