mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Revert "Issue #16121: Fix line number accounting in shlex"
This commit is contained in:
commit
e766c742c1
4 changed files with 1 additions and 28 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue