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
9c6b9166
Kaydet (Commit)
9c6b9166
authored
Nis 26, 2015
tarafından
Gregory P. Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Switch binascii over to using the common _Py_strhex implementation for its hex
and hexlify functions. issue9951.
üst
e3f6393b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
28 deletions
+3
-28
binascii.c
Modules/binascii.c
+3
-28
No files found.
Modules/binascii.c
Dosyayı görüntüle @
9c6b9166
...
...
@@ -56,6 +56,7 @@
#define PY_SSIZE_T_CLEAN
#include "Python.h"
#include "pystrhex.h"
#ifdef USE_ZLIB_CRC32
#include "zlib.h"
#endif
...
...
@@ -1117,33 +1118,7 @@ static PyObject *
binascii_b2a_hex_impl
(
PyModuleDef
*
module
,
Py_buffer
*
data
)
/*[clinic end generated code: output=179318922c2f8fda input=96423cfa299ff3b1]*/
{
char
*
argbuf
;
Py_ssize_t
arglen
;
PyObject
*
retval
;
char
*
retbuf
;
Py_ssize_t
i
,
j
;
argbuf
=
data
->
buf
;
arglen
=
data
->
len
;
assert
(
arglen
>=
0
);
if
(
arglen
>
PY_SSIZE_T_MAX
/
2
)
return
PyErr_NoMemory
();
retval
=
PyBytes_FromStringAndSize
(
NULL
,
arglen
*
2
);
if
(
!
retval
)
return
NULL
;
retbuf
=
PyBytes_AS_STRING
(
retval
);
/* make hex version of string, taken from shamodule.c */
for
(
i
=
j
=
0
;
i
<
arglen
;
i
++
)
{
unsigned
char
c
;
c
=
(
argbuf
[
i
]
>>
4
)
&
0xf
;
retbuf
[
j
++
]
=
Py_hexdigits
[
c
];
c
=
argbuf
[
i
]
&
0xf
;
retbuf
[
j
++
]
=
Py_hexdigits
[
c
];
}
return
retval
;
return
_Py_strhex_bytes
((
const
char
*
)
data
->
buf
,
data
->
len
);
}
/*[clinic input]
...
...
@@ -1158,7 +1133,7 @@ static PyObject *
binascii_hexlify_impl
(
PyModuleDef
*
module
,
Py_buffer
*
data
)
/*[clinic end generated code: output=6098440091fb61dc input=2e3afae7f083f061]*/
{
return
binascii_b2a_hex_impl
(
module
,
data
);
return
_Py_strhex_bytes
((
const
char
*
)
data
->
buf
,
data
->
len
);
}
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