Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
43072780
Commit
43072780
authored
Feb 23, 2013
by
Petri Lehtinen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #16121: Fix line number accounting in shlex
parent
fead3c8c
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
1 deletion
+28
-1
Lib/shlex.py
Lib/shlex.py
+15
-1
Lib/test/test_shlex.py
Lib/test/test_shlex.py
+9
-0
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/shlex.py
View file @
43072780
...
@@ -48,6 +48,7 @@ class shlex:
...
@@ -48,6 +48,7 @@ class shlex:
self
.
state
=
' '
self
.
state
=
' '
self
.
pushback
=
deque
()
self
.
pushback
=
deque
()
self
.
lineno
=
1
self
.
lineno
=
1
self
.
_lines_found
=
0
self
.
debug
=
0
self
.
debug
=
0
self
.
token
=
''
self
.
token
=
''
self
.
filestack
=
deque
()
self
.
filestack
=
deque
()
...
@@ -118,12 +119,23 @@ class shlex:
...
@@ -118,12 +119,23 @@ class shlex:
return
raw
return
raw
def
read_token
(
self
):
def
read_token
(
self
):
if
self
.
_lines_found
:
self
.
lineno
+=
self
.
_lines_found
self
.
_lines_found
=
0
i
=
0
quoted
=
False
quoted
=
False
escapedstate
=
' '
escapedstate
=
' '
while
True
:
while
True
:
i
+=
1
nextchar
=
self
.
instream
.
read
(
1
)
nextchar
=
self
.
instream
.
read
(
1
)
if
nextchar
==
'
\
n
'
:
if
nextchar
==
'
\
n
'
:
self
.
lineno
=
self
.
lineno
+
1
# In case newline is the first character increment lineno
if
i
==
1
:
self
.
lineno
+=
1
else
:
self
.
_lines_found
+=
1
if
self
.
debug
>=
3
:
if
self
.
debug
>=
3
:
print
"shlex: in state"
,
repr
(
self
.
state
),
\
print
"shlex: in state"
,
repr
(
self
.
state
),
\
"I see character:"
,
repr
(
nextchar
)
"I see character:"
,
repr
(
nextchar
)
...
@@ -143,6 +155,7 @@ class shlex:
...
@@ -143,6 +155,7 @@ class shlex:
continue
continue
elif
nextchar
in
self
.
commenters
:
elif
nextchar
in
self
.
commenters
:
self
.
instream
.
readline
()
self
.
instream
.
readline
()
# Not considered a token so incrementing lineno directly
self
.
lineno
=
self
.
lineno
+
1
self
.
lineno
=
self
.
lineno
+
1
elif
self
.
posix
and
nextchar
in
self
.
escape
:
elif
self
.
posix
and
nextchar
in
self
.
escape
:
escapedstate
=
'a'
escapedstate
=
'a'
...
@@ -210,6 +223,7 @@ class shlex:
...
@@ -210,6 +223,7 @@ class shlex:
continue
continue
elif
nextchar
in
self
.
commenters
:
elif
nextchar
in
self
.
commenters
:
self
.
instream
.
readline
()
self
.
instream
.
readline
()
# Not considered a token so incrementing lineno directly
self
.
lineno
=
self
.
lineno
+
1
self
.
lineno
=
self
.
lineno
+
1
if
self
.
posix
:
if
self
.
posix
:
self
.
state
=
' '
self
.
state
=
' '
...
...
Lib/test/test_shlex.py
View file @
43072780
...
@@ -178,6 +178,15 @@ class ShlexTest(unittest.TestCase):
...
@@ -178,6 +178,15 @@ class ShlexTest(unittest.TestCase):
"%s: %s != %s"
%
"%s: %s != %s"
%
(
self
.
data
[
i
][
0
],
l
,
self
.
data
[
i
][
1
:]))
(
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
# Allow this test to be used with old shlex.py
if
not
getattr
(
shlex
,
"split"
,
None
):
if
not
getattr
(
shlex
,
"split"
,
None
):
for
methname
in
dir
(
ShlexTest
):
for
methname
in
dir
(
ShlexTest
):
...
...
Misc/ACKS
View file @
43072780
...
@@ -717,6 +717,7 @@ Samuel Nicolary
...
@@ -717,6 +717,7 @@ Samuel Nicolary
Gustavo Niemeyer
Gustavo Niemeyer
Oscar Nierstrasz
Oscar Nierstrasz
Hrvoje Niksic
Hrvoje Niksic
Birk Nilson
Gregory Nofi
Gregory Nofi
Jesse Noller
Jesse Noller
Bill Noon
Bill Noon
...
...
Misc/NEWS
View file @
43072780
...
@@ -208,6 +208,9 @@ Core and Builtins
...
@@ -208,6 +208,9 @@ Core and Builtins
Library
Library
-------
-------
- Issue #16121: Fix line number accounting in shlex. Patch by Birk
Nilson.
- Issue #14720: sqlite3: Convert datetime microseconds correctly.
- Issue #14720: sqlite3: Convert datetime microseconds correctly.
Patch by Lowe Thiderman.
Patch by Lowe Thiderman.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment