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
7270b7f1
Kaydet (Commit)
7270b7f1
authored
Agu 17, 2014
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
_pickle: Optimize raw_unicode_escape(), use directly a bytes object, don't use
a temporary bytearray object.
üst
88d146b7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
10 deletions
+9
-10
_pickle.c
Modules/_pickle.c
+9
-10
No files found.
Modules/_pickle.c
Dosyayı görüntüle @
7270b7f1
...
...
@@ -2050,7 +2050,7 @@ save_bytes(PicklerObject *self, PyObject *obj)
static
PyObject
*
raw_unicode_escape
(
PyObject
*
obj
)
{
PyObject
*
repr
,
*
result
;
PyObject
*
repr
;
char
*
p
;
Py_ssize_t
i
,
size
,
expandsize
;
void
*
data
;
...
...
@@ -2069,13 +2069,14 @@ raw_unicode_escape(PyObject *obj)
if
(
size
>
PY_SSIZE_T_MAX
/
expandsize
)
return
PyErr_NoMemory
();
repr
=
PyByte
Array
_FromStringAndSize
(
NULL
,
expandsize
*
size
);
repr
=
PyByte
s
_FromStringAndSize
(
NULL
,
expandsize
*
size
);
if
(
repr
==
NULL
)
return
NULL
;
if
(
size
==
0
)
goto
done
;
return
repr
;
assert
(
Py_REFCNT
(
repr
)
==
1
);
p
=
PyByte
Array
_AS_STRING
(
repr
);
p
=
PyByte
s
_AS_STRING
(
repr
);
for
(
i
=
0
;
i
<
size
;
i
++
)
{
Py_UCS4
ch
=
PyUnicode_READ
(
kind
,
data
,
i
);
/* Map 32-bit characters to '\Uxxxxxxxx' */
...
...
@@ -2104,12 +2105,10 @@ raw_unicode_escape(PyObject *obj)
else
*
p
++
=
(
char
)
ch
;
}
size
=
p
-
PyByteArray_AS_STRING
(
repr
);
done:
result
=
PyBytes_FromStringAndSize
(
PyByteArray_AS_STRING
(
repr
),
size
);
Py_DECREF
(
repr
);
return
result
;
size
=
p
-
PyBytes_AS_STRING
(
repr
);
if
(
_PyBytes_Resize
(
&
repr
,
size
)
<
0
)
return
NULL
;
return
repr
;
}
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