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
5cac46dd
Kaydet (Commit)
5cac46dd
authored
Şub 22, 2010
tarafından
Jack Diederich
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
* fix issue#7476
üst
f2055ae4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
0 deletions
+6
-0
pipes.py
Lib/pipes.py
+3
-0
test_pipes.py
Lib/test/test_pipes.py
+2
-0
ACKS
Misc/ACKS
+1
-0
No files found.
Lib/pipes.py
Dosyayı görüntüle @
5cac46dd
...
...
@@ -267,10 +267,13 @@ _safechars = string.ascii_letters + string.digits + '!@%_-+=:,./' # Safe unquote
_funnychars
=
'"`$
\\
'
# Unsafe inside "double quotes"
def
quote
(
file
):
''' return a shell-escaped version of the file string '''
for
c
in
file
:
if
c
not
in
_safechars
:
break
else
:
if
not
file
:
return
"''"
return
file
if
'
\'
'
not
in
file
:
return
'
\'
'
+
file
+
'
\'
'
...
...
Lib/test/test_pipes.py
Dosyayı görüntüle @
5cac46dd
...
...
@@ -76,6 +76,8 @@ class SimplePipeTests(unittest.TestCase):
self
.
assertEqual
(
pipes
.
quote
(
"test
%
s'name'"
%
u
),
'"test
\\
%
s
\'
name
\'
"'
%
u
)
self
.
assertEqual
(
pipes
.
quote
(
''
),
"''"
)
def
testRepr
(
self
):
t
=
pipes
.
Template
()
self
.
assertEqual
(
repr
(
t
),
"<Template instance, steps=[]>"
)
...
...
Misc/ACKS
Dosyayı görüntüle @
5cac46dd
...
...
@@ -819,6 +819,7 @@ Dik Winter
Blake Winton
Jean-Claude Wippler
Lars Wirzenius
John Wiseman
Chris Withers
Stefan Witzel
David Wolever
...
...
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