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
48f3dcc9
Kaydet (Commit)
48f3dcc9
authored
Nis 20, 2003
tarafından
Gustavo Niemeyer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- Changed shlex.split() method to have more useful and
meaningful parameters.
üst
cf146d31
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
16 deletions
+13
-16
libshlex.tex
Doc/lib/libshlex.tex
+5
-6
shlex.py
Lib/shlex.py
+5
-3
test_shlex.py
Lib/test/test_shlex.py
+3
-7
No files found.
Doc/lib/libshlex.tex
Dosyayı görüntüle @
48f3dcc9
...
...
@@ -25,12 +25,11 @@ Python applications) or for parsing quoted strings.
The
\module
{
shlex
}
module defines the following functions:
\begin{funcdesc}
{
split
}{
s
\optional
{
, posix=
\code
{
True
}
\optional
{
,
spaces=
\code
{
True
}}}}
Split the string
\var
{
s
}
using shell-like syntax. If
\var
{
posix
}
is
\code
{
True
}
, operate in
\POSIX
{}
mode. If
\var
{
spaces
}
is
\code
{
True
}
, it
will only split words in whitespaces (setting the
\member
{
whitespace
_
split
}
member of the
\class
{
shlex
}
instance).
\begin{funcdesc}
{
split
}{
s
\optional
{
, comments=
\code
{
False
}}}
Split the string
\var
{
s
}
using shell-like syntax. If
\var
{
comments
}
is
\code
{
False
}
, the parsing of comments in the given string will be
disabled (setting the
\member
{
commenters
}
member of the
\class
{
shlex
}
instance to the empty string). This function operates in
\POSIX
{}
mode.
\versionadded
{
2.3
}
\end{funcdesc}
...
...
Lib/shlex.py
Dosyayı görüntüle @
48f3dcc9
...
...
@@ -271,9 +271,11 @@ class shlex:
raise
StopIteration
return
token
def
split
(
s
,
posix
=
True
,
spaces
=
True
):
lex
=
shlex
(
s
,
posix
=
posix
)
lex
.
whitespace_split
=
spaces
def
split
(
s
,
comments
=
False
):
lex
=
shlex
(
s
,
posix
=
True
)
lex
.
whitespace_split
=
True
if
not
comments
:
lex
.
commenters
=
''
return
list
(
lex
)
if
__name__
==
'__main__'
:
...
...
Lib/test/test_shlex.py
Dosyayı görüntüle @
48f3dcc9
...
...
@@ -151,9 +151,9 @@ class ShlexTest(unittest.TestCase):
for
item
in
self
.
posix_data
:
item
[
0
]
=
item
[
0
]
.
replace
(
r"\n"
,
"
\n
"
)
def
splitTest
(
self
,
data
,
posix
,
space
s
):
def
splitTest
(
self
,
data
,
comment
s
):
for
i
in
range
(
len
(
data
)):
l
=
shlex
.
split
(
data
[
i
][
0
],
posix
=
posix
,
spaces
=
space
s
)
l
=
shlex
.
split
(
data
[
i
][
0
],
comments
=
comment
s
)
self
.
assertEqual
(
l
,
data
[
i
][
1
:],
"
%
s:
%
s !=
%
s"
%
(
data
[
i
][
0
],
l
,
data
[
i
][
1
:]))
...
...
@@ -167,13 +167,9 @@ class ShlexTest(unittest.TestCase):
tok
=
lex
.
get_token
()
return
ret
def
testSplit
(
self
):
"""Test data splitting with non-posix parser"""
self
.
splitTest
(
self
.
data
,
posix
=
0
,
spaces
=
0
)
def
testSplitPosix
(
self
):
"""Test data splitting with posix parser"""
self
.
splitTest
(
self
.
posix_data
,
posix
=
1
,
spaces
=
1
)
self
.
splitTest
(
self
.
posix_data
,
comments
=
True
)
def
testCompat
(
self
):
"""Test compatibility interface"""
...
...
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