diff options
author | Petri Lehtinen <petri@digip.org> | 2013-02-23 22:12:35 (GMT) |
---|---|---|
committer | Petri Lehtinen <petri@digip.org> | 2013-02-23 22:12:35 (GMT) |
commit | e766c742c1f006c08fa0f48ee43b4edb599a81c9 (patch) | |
tree | 5e87151c39d2afe9ca54eab1a72b0ebf8e7c281d /Lib/test/test_shlex.py | |
parent | 6d61eaa0d0d89b0e035ce75d810280515befc17a (diff) | |
parent | 0362b54fd9e8158c4b62386f1bd654daf1095ed4 (diff) | |
download | cpython-e766c742c1f006c08fa0f48ee43b4edb599a81c9.zip cpython-e766c742c1f006c08fa0f48ee43b4edb599a81c9.tar.gz cpython-e766c742c1f006c08fa0f48ee43b4edb599a81c9.tar.bz2 |
Revert "Issue #16121: Fix line number accounting in shlex"
Diffstat (limited to 'Lib/test/test_shlex.py')
-rw-r--r-- | Lib/test/test_shlex.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Lib/test/test_shlex.py b/Lib/test/test_shlex.py index 5f7b68f..d2809ae 100644 --- a/Lib/test/test_shlex.py +++ b/Lib/test/test_shlex.py @@ -189,15 +189,6 @@ class ShlexTest(unittest.TestCase): self.assertEqual(shlex.quote("test%s'name'" % u), "'test%s'\"'\"'name'\"'\"''" % u) - def testLineNumbers(self): - data = '"a \n b \n c"\n"x"\n"y"' - for is_posix in (True, False): - s = shlex.shlex(data, posix=is_posix) - for i in (1, 4, 5): - s.read_token() - self.assertEqual(s.lineno, i) - - # Allow this test to be used with old shlex.py if not getattr(shlex, "split", None): for methname in dir(ShlexTest): |