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
61eda726
Kaydet (Commit)
61eda726
authored
Ock 15, 2017
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #29132: Updated shlex to work better with punctuation chars in POSIX mode.
Thanks to Evan_ for the report and patch.
üst
2e1b6ea4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
5 deletions
+13
-5
shlex.py
Lib/shlex.py
+5
-5
test_shlex.py
Lib/test/test_shlex.py
+8
-0
No files found.
Lib/shlex.py
Dosyayı görüntüle @
61eda726
...
...
@@ -232,11 +232,6 @@ class shlex:
break
# emit current token
else
:
continue
elif
self
.
posix
and
nextchar
in
self
.
quotes
:
self
.
state
=
nextchar
elif
self
.
posix
and
nextchar
in
self
.
escape
:
escapedstate
=
'a'
self
.
state
=
nextchar
elif
self
.
state
==
'c'
:
if
nextchar
in
self
.
punctuation_chars
:
self
.
token
+=
nextchar
...
...
@@ -245,6 +240,11 @@ class shlex:
self
.
_pushback_chars
.
append
(
nextchar
)
self
.
state
=
' '
break
elif
self
.
posix
and
nextchar
in
self
.
quotes
:
self
.
state
=
nextchar
elif
self
.
posix
and
nextchar
in
self
.
escape
:
escapedstate
=
'a'
self
.
state
=
nextchar
elif
(
nextchar
in
self
.
wordchars
or
nextchar
in
self
.
quotes
or
self
.
whitespace_split
):
self
.
token
+=
nextchar
...
...
Lib/test/test_shlex.py
Dosyayı görüntüle @
61eda726
...
...
@@ -273,6 +273,14 @@ class ShlexTest(unittest.TestCase):
# white space
self
.
assertEqual
(
list
(
s
),
[
'a'
,
'&&'
,
'b'
,
'||'
,
'c'
])
def
testPunctuationWithPosix
(
self
):
"""Test that punctuation_chars and posix behave correctly together."""
# see Issue #29132
s
=
shlex
.
shlex
(
'f >"abc"'
,
posix
=
True
,
punctuation_chars
=
True
)
self
.
assertEqual
(
list
(
s
),
[
'f'
,
'>'
,
'abc'
])
s
=
shlex
.
shlex
(
'f >
\\
"abc
\\
"'
,
posix
=
True
,
punctuation_chars
=
True
)
self
.
assertEqual
(
list
(
s
),
[
'f'
,
'>'
,
'"abc"'
])
def
testEmptyStringHandling
(
self
):
"""Test that parsing of empty strings is correctly handled."""
# see Issue #21999
...
...
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