mirror of
https://github.com/python/cpython.git
synced 2025-11-02 19:12:55 +00:00
Merged revisions 77160 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
................
r77160 | benjamin.peterson | 2009-12-30 13:44:23 -0600 (Wed, 30 Dec 2009) | 9 lines
Merged revisions 77158 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r77158 | benjamin.peterson | 2009-12-30 13:41:03 -0600 (Wed, 30 Dec 2009) | 1 line
clean up logging's global state after the test finishes
........
................
This commit is contained in:
parent
d12362a828
commit
2591d21deb
1 changed files with 5 additions and 0 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
import sys
|
import sys
|
||||||
import codecs
|
import codecs
|
||||||
|
import logging
|
||||||
import io
|
import io
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
|
@ -9,6 +10,10 @@ from lib2to3 import main
|
||||||
|
|
||||||
class TestMain(unittest.TestCase):
|
class TestMain(unittest.TestCase):
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
# Clean up logging configuration down by main.
|
||||||
|
del logging.root.handlers[:]
|
||||||
|
|
||||||
def run_2to3_capture(self, args, in_capture, out_capture, err_capture):
|
def run_2to3_capture(self, args, in_capture, out_capture, err_capture):
|
||||||
save_stdin = sys.stdin
|
save_stdin = sys.stdin
|
||||||
save_stdout = sys.stdout
|
save_stdout = sys.stdout
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue