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
5076740d
Kaydet (Commit)
5076740d
authored
Kas 22, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#4361: fix string.py docstring, clarify that only ASCII characters are in its constants.
üst
4216d2d8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
string.rst
Doc/library/string.rst
+1
-1
string.py
Lib/string.py
+9
-9
No files found.
Doc/library/string.rst
Dosyayı görüntüle @
5076740d
...
...
@@ -71,7 +71,7 @@ The constants defined in this module are:
.. data:: whitespace
A string containing all characters that are considered whitespace.
A string containing all
ASCII
characters that are considered whitespace.
This includes the characters space, tab, linefeed, return, formfeed, and
vertical tab.
...
...
Lib/string.py
Dosyayı görüntüle @
5076740d
...
...
@@ -2,15 +2,15 @@
Public module variables:
whitespace -- a string containing all
characters considered
whitespace
lowercase -- a string containing all characters considered
lowercase letters
uppercase -- a string containing all characters considered
uppercase letters
letters -- a string containing all characters considered
letters
digits -- a string containing all
characters considered
decimal digits
hexdigits -- a string containing all
characters considered
hexadecimal 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
whitespace -- a string containing all
ASCII
whitespace
ascii_lowercase -- a string containing all ASCII
lowercase letters
ascii_uppercase -- a string containing all ASCII
uppercase letters
ascii_letters -- a string containing all ASCII
letters
digits -- a string containing all
ASCII
decimal digits
hexdigits -- a string containing all
ASCII
hexadecimal digits
octdigits -- a string containing all
ASCII
octal digits
punctuation -- a string containing all
ASCII punctuation characters
printable -- a string containing all
ASCII
characters considered printable
"""
...
...
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