Kaydet (Commit) 844f7410 authored tarafından Vinay Sajip's avatar Vinay Sajip

Issue #3809: Fixed spurious 'test.blah' file left behind by test_logging.

üst d3ffb897
...@@ -615,10 +615,10 @@ class ConfigFileTest(BaseTest): ...@@ -615,10 +615,10 @@ class ConfigFileTest(BaseTest):
args=(sys.stdout,) args=(sys.stdout,)
[handler_hand2] [handler_hand2]
class=FileHandler class=StreamHandler
level=NOTSET level=NOTSET
formatter=form1 formatter=form1
args=('test.blah', 'a') args=(sys.stderr,)
[formatter_form1] [formatter_form1]
format=%(levelname)s ++ %(message)s format=%(levelname)s ++ %(message)s
......
...@@ -65,6 +65,8 @@ C-API ...@@ -65,6 +65,8 @@ C-API
Library Library
------- -------
- Issue #3809: Fixed spurious 'test.blah' file left behind by test_logging.
- Issue 3781: Clean up the API for warnings.catch_warnings() by having it - Issue 3781: Clean up the API for warnings.catch_warnings() by having it
return a list or None rather than a custom object. return a list or None rather than a custom object.
...@@ -138,7 +140,7 @@ Build ...@@ -138,7 +140,7 @@ Build
- Allow passing the MSI file name to merge.py. - Allow passing the MSI file name to merge.py.
- Issue #3758: Rename the 'check' target to 'patchcheck' so as to not clash - Issue #3758: Rename the 'check' target to 'patchcheck' so as to not clash
with GNU build target guidelines. with GNU build target guidelines.
......
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