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
fd64c590
Kaydet (Commit)
fd64c590
authored
Eyl 18, 2000
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix serious typo!
Add the new constants to the module docstring.
üst
10d27660
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
string.py
Lib/string.py
+3
-1
No files found.
Lib/string.py
Dosyayı görüntüle @
fd64c590
...
@@ -14,6 +14,8 @@ letters -- a string containing all characters considered letters
...
@@ -14,6 +14,8 @@ letters -- a string containing all characters considered letters
digits -- a string containing all characters considered decimal digits
digits -- a string containing all characters considered decimal digits
hexdigits -- a string containing all characters considered hexadecimal digits
hexdigits -- a string containing all characters considered hexadecimal digits
octdigits -- a string containing all characters considered octal digits
octdigits -- a string containing all characters considered octal digits
punctuation -- a string containing all characters considered punctuation
printable -- a string containing all characters considered printable
"""
"""
...
@@ -25,7 +27,7 @@ letters = lowercase + uppercase
...
@@ -25,7 +27,7 @@ letters = lowercase + uppercase
digits
=
'0123456789'
digits
=
'0123456789'
hexdigits
=
digits
+
'abcdef'
+
'ABCDEF'
hexdigits
=
digits
+
'abcdef'
+
'ABCDEF'
octdigits
=
'01234567'
octdigits
=
'01234567'
punctua
c
tion
=
"""!"#$
%
&'()*+,-./:;<=>?@[
\
]^_`{|}~"""
punctuation
=
"""!"#$
%
&'()*+,-./:;<=>?@[
\
]^_`{|}~"""
printable
=
digits
+
letters
+
punctuation
+
whitespace
printable
=
digits
+
letters
+
punctuation
+
whitespace
# Case conversion helpers
# Case conversion helpers
...
...
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