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
2846b0ab
Kaydet (Commit)
2846b0ab
authored
Şub 09, 2001
tarafından
Eric S. Raymond
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
String method conversion.
(This one was trivial -- no actual string. references in it!)
üst
fc170b1f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
5 additions
and
7 deletions
+5
-7
test_posixpath.py
Lib/test/test_posixpath.py
+0
-1
test_pty.py
Lib/test/test_pty.py
+1
-1
test_pwd.py
Lib/test/test_pwd.py
+1
-2
test_re.py
Lib/test/test_re.py
+1
-1
test_sre.py
Lib/test/test_sre.py
+1
-1
test_userstring.py
Lib/test/test_userstring.py
+1
-1
No files found.
Lib/test/test_posixpath.py
Dosyayı görüntüle @
2846b0ab
import
posixpath
import
string
errors
=
0
...
...
Lib/test/test_pty.py
Dosyayı görüntüle @
2846b0ab
import
pty
,
os
,
sys
,
string
import
pty
,
os
,
sys
from
test_support
import
verbose
,
TestFailed
,
TestSkipped
TEST_STRING_1
=
"I wish to buy a fish license."
...
...
Lib/test/test_pwd.py
Dosyayı görüntüle @
2846b0ab
from
test_support
import
verbose
import
pwd
import
string
print
'pwd.getpwall()'
entries
=
pwd
.
getpwall
()
...
...
@@ -50,7 +49,7 @@ while bynames.has_key(fakename):
except
IndexError
:
# should never happen... if so, just forget it
break
fakename
=
string
.
join
(
map
(
None
,
chars
),
''
)
fakename
=
''
.
join
(
map
(
None
,
chars
)
)
try
:
pwd
.
getpwnam
(
fakename
)
...
...
Lib/test/test_re.py
Dosyayı görüntüle @
2846b0ab
...
...
@@ -3,7 +3,7 @@ sys.path = ['.'] + sys.path
from
test_support
import
verify
,
verbose
,
TestFailed
import
re
import
sys
,
os
,
string
,
traceback
import
sys
,
os
,
traceback
# Misc tests from Tim Peters' re.doc
...
...
Lib/test/test_sre.py
Dosyayı görüntüle @
2846b0ab
...
...
@@ -8,7 +8,7 @@ sys.path=['.']+sys.path
from
test_support
import
verbose
,
TestFailed
import
sre
import
sys
,
os
,
string
,
traceback
import
sys
,
os
,
traceback
#
# test support
...
...
Lib/test/test_userstring.py
Dosyayı görüntüle @
2846b0ab
#!/usr/bin/env python
import
sys
,
string
import
sys
from
test_support
import
verbose
import
string_tests
# UserString is a wrapper around the native builtin string type.
...
...
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