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
84e3ccc4
Kaydet (Commit)
84e3ccc4
authored
Haz 27, 2011
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix closes Issue12385 - Clarify maketrans method docstring for bytes and bytearray object.
üst
0f93d3d6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
bytes_methods.c
Objects/bytes_methods.c
+4
-4
No files found.
Objects/bytes_methods.c
Dosyayı görüntüle @
84e3ccc4
...
@@ -366,10 +366,10 @@ _Py_bytes_swapcase(char *result, char *s, Py_ssize_t len)
...
@@ -366,10 +366,10 @@ _Py_bytes_swapcase(char *result, char *s, Py_ssize_t len)
PyDoc_STRVAR_shared
(
_Py_maketrans__doc__
,
PyDoc_STRVAR_shared
(
_Py_maketrans__doc__
,
"B.maketrans(frm, to) -> translation table
\n
\
"B.maketrans(frm, to) -> translation table
\n
\
\n
\
\n
\
Return a translation table (a bytes object of length 256)
\n
\
Return a translation table (a bytes object of length 256)
suitable
\n
\
suitable for use in bytes.translate where each byte in frm is
\n
\
for use in the bytes or bytearray translate method where each byte
\n
\
mapped to the byte at the same position in to.
\n
\
in frm is
mapped to the byte at the same position in to.
\n
\
The
string
s frm and to must be of the same length."
);
The
bytes object
s frm and to must be of the same length."
);
static
Py_ssize_t
static
Py_ssize_t
_getbuffer
(
PyObject
*
obj
,
Py_buffer
*
view
)
_getbuffer
(
PyObject
*
obj
,
Py_buffer
*
view
)
...
...
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