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
f4ec3c5a
Kaydet (Commit)
f4ec3c5a
authored
Ock 11, 2012
tarafından
Terry Jan Reedy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#13754 String returned if less than *or equal to* x 3
Close *13753 'seq' now 'iterable'
üst
f7bfff0e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
stdtypes.rst
Doc/library/stdtypes.rst
+4
-4
No files found.
Doc/library/stdtypes.rst
Dosyayı görüntüle @
f4ec3c5a
...
@@ -1189,7 +1189,7 @@ functions based on regular expressions.
...
@@ -1189,7 +1189,7 @@ functions based on regular expressions.
Return a string which is the concatenation of the strings in the
Return a string which is the concatenation of the strings in the
:term:`iterable` *iterable*. A :exc:`TypeError` will be raised if there are
:term:`iterable` *iterable*. A :exc:`TypeError` will be raised if there are
any non-string values in *
seq
*, including :class:`bytes` objects. The
any non-string values in *
iterable
*, including :class:`bytes` objects. The
separator between elements is the string providing this method.
separator between elements is the string providing this method.
...
@@ -1197,7 +1197,7 @@ functions based on regular expressions.
...
@@ -1197,7 +1197,7 @@ functions based on regular expressions.
Return the string left justified in a string of length *width*. Padding is done
Return the string left justified in a string of length *width*. Padding is done
using the specified *fillchar* (default is a space). The original string is
using the specified *fillchar* (default is a space). The original string is
returned if *width* is less than ``len(s)``.
returned if *width* is less than
or equal to
``len(s)``.
.. method:: str.lower()
.. method:: str.lower()
...
@@ -1266,7 +1266,7 @@ functions based on regular expressions.
...
@@ -1266,7 +1266,7 @@ functions based on regular expressions.
Return the string right justified in a string of length *width*. Padding is done
Return the string right justified in a string of length *width*. Padding is done
using the specified *fillchar* (default is a space). The original string is
using the specified *fillchar* (default is a space). The original string is
returned if *width* is less than ``len(s)``.
returned if *width* is less than
or equal to
``len(s)``.
.. method:: str.rpartition(sep)
.. method:: str.rpartition(sep)
...
@@ -1414,7 +1414,7 @@ functions based on regular expressions.
...
@@ -1414,7 +1414,7 @@ functions based on regular expressions.
Return the numeric string left filled with zeros in a string of length
Return the numeric string left filled with zeros in a string of length
*width*. A sign prefix is handled correctly. The original string is
*width*. A sign prefix is handled correctly. The original string is
returned if *width* is less than ``len(s)``.
returned if *width* is less than
or equal to
``len(s)``.
...
...
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