summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-09-09 07:28:22 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-09-09 07:28:22 (GMT)
commit8530e8590f4d31b5af66e43bd271b0ea1658ff3e (patch)
treecfdf80cc12f214bbaf6a01ce418a0206e15b08ae /Lib
parent14b785192bb2b83b7826e9c0374c6d63e63f0f04 (diff)
downloadcpython-8530e8590f4d31b5af66e43bd271b0ea1658ff3e.zip
cpython-8530e8590f4d31b5af66e43bd271b0ea1658ff3e.tar.gz
cpython-8530e8590f4d31b5af66e43bd271b0ea1658ff3e.tar.bz2
Revert r33661, which broke all buildbots.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_cmd_line.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/test/test_cmd_line.py b/Lib/test/test_cmd_line.py
index fc0e3a7..d63dfa1 100644
--- a/Lib/test/test_cmd_line.py
+++ b/Lib/test/test_cmd_line.py
@@ -135,12 +135,6 @@ class CmdLineTest(unittest.TestCase):
self.exit_code('-c', 'pass'),
0)
- # Test handling of non-ascii data
- command = "assert(ord('\xe9') == 0xe9)"
- self.assertEqual(
- self.exit_code('-c', command),
- 0)
-
def test_main():
test.support.run_unittest(CmdLineTest)