Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
0362b54f
Kaydet (Commit)
0362b54f
authored
Şub 23, 2013
tarafından
Petri Lehtinen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Revert "Issue #16121: Fix line number accounting in shlex"
üst
7a05113c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
28 deletions
+1
-28
shlex.py
Lib/shlex.py
+1
-15
test_shlex.py
Lib/test/test_shlex.py
+0
-9
ACKS
Misc/ACKS
+0
-1
NEWS
Misc/NEWS
+0
-3
No files found.
Lib/shlex.py
Dosyayı görüntüle @
0362b54f
...
...
@@ -44,7 +44,6 @@ class shlex:
self
.
state
=
' '
self
.
pushback
=
deque
()
self
.
lineno
=
1
self
.
_lines_found
=
0
self
.
debug
=
0
self
.
token
=
''
self
.
filestack
=
deque
()
...
...
@@ -115,23 +114,12 @@ class shlex:
return
raw
def
read_token
(
self
):
if
self
.
_lines_found
:
self
.
lineno
+=
self
.
_lines_found
self
.
_lines_found
=
0
i
=
0
quoted
=
False
escapedstate
=
' '
while
True
:
i
+=
1
nextchar
=
self
.
instream
.
read
(
1
)
if
nextchar
==
'
\n
'
:
# In case newline is the first character increment lineno
if
i
==
1
:
self
.
lineno
+=
1
else
:
self
.
_lines_found
+=
1
self
.
lineno
=
self
.
lineno
+
1
if
self
.
debug
>=
3
:
print
(
"shlex: in state"
,
repr
(
self
.
state
),
\
"I see character:"
,
repr
(
nextchar
))
...
...
@@ -151,7 +139,6 @@ class shlex:
continue
elif
nextchar
in
self
.
commenters
:
self
.
instream
.
readline
()
# Not considered a token so incrementing lineno directly
self
.
lineno
=
self
.
lineno
+
1
elif
self
.
posix
and
nextchar
in
self
.
escape
:
escapedstate
=
'a'
...
...
@@ -219,7 +206,6 @@ class shlex:
continue
elif
nextchar
in
self
.
commenters
:
self
.
instream
.
readline
()
# Not considered a token so incrementing lineno directly
self
.
lineno
=
self
.
lineno
+
1
if
self
.
posix
:
self
.
state
=
' '
...
...
Lib/test/test_shlex.py
Dosyayı görüntüle @
0362b54f
...
...
@@ -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
):
...
...
Misc/ACKS
Dosyayı görüntüle @
0362b54f
...
...
@@ -774,7 +774,6 @@ Samuel Nicolary
Gustavo Niemeyer
Oscar Nierstrasz
Hrvoje Niksic
Birk Nilson
Gregory Nofi
Jesse Noller
Bill Noon
...
...
Misc/NEWS
Dosyayı görüntüle @
0362b54f
...
...
@@ -227,9 +227,6 @@ Core and Builtins
Library
-------
- Issue #16121: Fix line number accounting in shlex. Patch by Birk
Nilson.
- Issue #14720: sqlite3: Convert datetime microseconds correctly.
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