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
0c0e229d
Kaydet (Commit)
0c0e229d
authored
Ock 09, 2010
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
simplify string comparison of from_bytes/to_bytes
üst
8667a9b6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
20 deletions
+6
-20
longobject.c
Objects/longobject.c
+6
-20
No files found.
Objects/longobject.c
Dosyayı görüntüle @
0c0e229d
...
...
@@ -4325,10 +4325,9 @@ long_to_bytes(PyLongObject *v, PyObject *args, PyObject *kwds)
int
little_endian
;
int
is_signed
;
PyObject
*
bytes
;
static
PyObject
*
little_str
=
NULL
,
*
big_str
=
NULL
;
static
char
*
kwlist
[]
=
{
"length"
,
"byteorder"
,
"signed"
,
NULL
};
if
(
!
PyArg_ParseTupleAndKeywords
(
args
,
kwds
,
"n
O
|O:to_bytes"
,
kwlist
,
if
(
!
PyArg_ParseTupleAndKeywords
(
args
,
kwds
,
"n
U
|O:to_bytes"
,
kwlist
,
&
length
,
&
byteorder_str
,
&
is_signed_obj
))
return
NULL
;
...
...
@@ -4338,16 +4337,10 @@ long_to_bytes(PyLongObject *v, PyObject *args, PyObject *kwds)
"'signed' is a keyword-only argument"
);
return
NULL
;
}
if
(
little_str
==
NULL
)
{
little_str
=
PyUnicode_InternFromString
(
"little"
);
big_str
=
PyUnicode_InternFromString
(
"big"
);
if
(
little_str
==
NULL
||
big_str
==
NULL
)
return
NULL
;
}
if
(
PyObject_RichCompareBool
(
byteorder_str
,
little_str
,
Py_EQ
))
if
(
!
PyUnicode_CompareWithASCIIString
(
byteorder_str
,
"little"
))
little_endian
=
1
;
else
if
(
PyObject_RichCompareBool
(
byteorder_str
,
big_str
,
Py_EQ
))
else
if
(
!
PyUnicode_CompareWithASCIIString
(
byteorder_str
,
"big"
))
little_endian
=
0
;
else
{
PyErr_SetString
(
PyExc_ValueError
,
...
...
@@ -4414,10 +4407,9 @@ long_from_bytes(PyTypeObject *type, PyObject *args, PyObject *kwds)
PyObject
*
obj
;
PyObject
*
bytes
;
PyObject
*
long_obj
;
static
PyObject
*
little_str
=
NULL
,
*
big_str
=
NULL
;
static
char
*
kwlist
[]
=
{
"bytes"
,
"byteorder"
,
"signed"
,
NULL
};
if
(
!
PyArg_ParseTupleAndKeywords
(
args
,
kwds
,
"O
O
|O:from_bytes"
,
kwlist
,
if
(
!
PyArg_ParseTupleAndKeywords
(
args
,
kwds
,
"O
U
|O:from_bytes"
,
kwlist
,
&
obj
,
&
byteorder_str
,
&
is_signed_obj
))
return
NULL
;
...
...
@@ -4427,16 +4419,10 @@ long_from_bytes(PyTypeObject *type, PyObject *args, PyObject *kwds)
"'signed' is a keyword-only argument"
);
return
NULL
;
}
if
(
little_str
==
NULL
)
{
little_str
=
PyUnicode_InternFromString
(
"little"
);
big_str
=
PyUnicode_InternFromString
(
"big"
);
if
(
little_str
==
NULL
||
big_str
==
NULL
)
return
NULL
;
}
if
(
PyObject_RichCompareBool
(
byteorder_str
,
little_str
,
Py_EQ
))
if
(
!
PyUnicode_CompareWithASCIIString
(
byteorder_str
,
"little"
))
little_endian
=
1
;
else
if
(
PyObject_RichCompareBool
(
byteorder_str
,
big_str
,
Py_EQ
))
else
if
(
!
PyUnicode_CompareWithASCIIString
(
byteorder_str
,
"big"
))
little_endian
=
0
;
else
{
PyErr_SetString
(
PyExc_ValueError
,
...
...
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