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
5fdb64b5
Kaydet (Commit)
5fdb64b5
authored
Kas 03, 2013
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#19411: Clarify that b2a_hex/hexlify returns a bytes object.
Initial patch by Vajrasky Kok.
üst
0de4d3e3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
binascii.rst
Doc/library/binascii.rst
+1
-1
binascii.c
Modules/binascii.c
+2
-1
No files found.
Doc/library/binascii.rst
Dosyayı görüntüle @
5fdb64b5
...
...
@@ -145,7 +145,7 @@ The :mod:`binascii` module defines the following functions:
Return the hexadecimal representation of the binary *data*. Every byte of
*data* is converted into the corresponding 2-digit hex representation. The
re
sulting string
is therefore twice as long as the length of *data*.
re
turned bytes object
is therefore twice as long as the length of *data*.
.. function:: a2b_hex(hexstr)
...
...
Modules/binascii.c
Dosyayı görüntüle @
5fdb64b5
...
...
@@ -1129,7 +1129,8 @@ binascii_hexlify(PyObject *self, PyObject *args)
PyDoc_STRVAR
(
doc_hexlify
,
"b2a_hex(data) -> s; Hexadecimal representation of binary data.
\n
\
\n
\
This function is also available as
\"
hexlify()
\"
."
);
The return value is a bytes object. This function is also
\n
\
available as
\"
hexlify()
\"
."
);
static
int
...
...
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