Kaydet (Commit) e418d760 authored tarafından Ezio Melotti's avatar Ezio Melotti

#15304: fix wrong warning message in test.support.temp_cwd().

üst 0847db7c
...@@ -600,7 +600,7 @@ def temp_cwd(name='tempcwd', quiet=False, path=None): ...@@ -600,7 +600,7 @@ def temp_cwd(name='tempcwd', quiet=False, path=None):
except OSError: except OSError:
if not quiet: if not quiet:
raise raise
warnings.warn('tests may fail, unable to change the CWD to ' + name, warnings.warn('tests may fail, unable to change the CWD to ' + path,
RuntimeWarning, stacklevel=3) RuntimeWarning, stacklevel=3)
try: try:
yield os.getcwd() yield os.getcwd()
......
...@@ -494,6 +494,9 @@ Extension Modules ...@@ -494,6 +494,9 @@ Extension Modules
Tests Tests
----- -----
- Issue #15304: Fix warning message when os.chdir() fails inside
test.support.temp_cwd(). Patch by Chris Jerdonek.
- Issue #15802: Fix test logic in TestMaildir.test_create_tmp. Patch - Issue #15802: Fix test logic in TestMaildir.test_create_tmp. Patch
by Serhiy Storchaka. by Serhiy Storchaka.
......
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