diff options
author | Petri Lehtinen <petri@digip.org> | 2013-02-23 22:03:15 (GMT) |
---|---|---|
committer | Petri Lehtinen <petri@digip.org> | 2013-02-23 22:12:03 (GMT) |
commit | 0362b54fd9e8158c4b62386f1bd654daf1095ed4 (patch) | |
tree | 53edcc7868b100402a9de75f69d4bb111905ff74 /Lib/test | |
parent | 7a05113ccf76b077b138d40794e52f6881a57c4c (diff) | |
download | cpython-0362b54fd9e8158c4b62386f1bd654daf1095ed4.zip cpython-0362b54fd9e8158c4b62386f1bd654daf1095ed4.tar.gz cpython-0362b54fd9e8158c4b62386f1bd654daf1095ed4.tar.bz2 |
Revert "Issue #16121: Fix line number accounting in shlex"
Diffstat (limited to 'Lib/test')
-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 1cd8220..25e4b6d 100644 --- a/Lib/test/test_shlex.py +++ b/Lib/test/test_shlex.py @@ -173,15 +173,6 @@ class ShlexTest(unittest.TestCase): "%s: %s != %s" % (self.data[i][0], l, self.data[i][1:])) - 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): |