mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Make test_optparse pass.
This commit is contained in:
parent
a222e4cc71
commit
b4e87e3792
1 changed files with 1 additions and 5 deletions
|
@ -1463,10 +1463,6 @@ class TestHelp(BaseTest):
|
|||
os.environ['COLUMNS'] = orig_columns
|
||||
|
||||
def assertHelpEquals(self, expected_output):
|
||||
if isinstance(expected_output, unicode):
|
||||
encoding = self.parser._get_encoding(sys.stdout)
|
||||
expected_output = expected_output.encode(encoding, "replace")
|
||||
|
||||
save_argv = sys.argv[:]
|
||||
try:
|
||||
# Make optparse believe bar.py is being executed.
|
||||
|
@ -1595,7 +1591,7 @@ class TestParseNumber(BaseTest):
|
|||
self.assertRaises(
|
||||
_parse_num, ("0xOoops", int), {},
|
||||
ValueError,
|
||||
re.compile(r"invalid literal for int().*: '?0xOoops'?"))
|
||||
re.compile(r"invalid literal for int().*: s?'?0xOoops'?"))
|
||||
|
||||
def test_parse_num_ok(self):
|
||||
self.assertEqual(_parse_num("0", int), 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue