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
ff0f322e
Kaydet (Commit)
ff0f322e
authored
Haz 27, 2015
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge 3.3
üst
89584c97
59b08c18
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
16 deletions
+12
-16
NEWS
Misc/NEWS
+2
-0
_pickle.c
Modules/_pickle.c
+10
-16
No files found.
Misc/NEWS
Dosyayı görüntüle @
ff0f322e
...
...
@@ -91,6 +91,8 @@ Library
-
Issue
#
23796
:
peek
and
read1
methods
of
BufferedReader
now
raise
ValueError
if
they
called
on
a
closed
object
.
Patch
by
John
Hergenroeder
.
-
Fix
possible
integer
overflows
in
the
pickle
module
.
-
Issue
#
22931
:
Allow
'['
and
']'
in
cookie
values
.
-
Issue
#
20274
:
Remove
ignored
and
erroneous
"kwargs"
parameters
from
three
...
...
Modules/_pickle.c
Dosyayı görüntüle @
ff0f322e
...
...
@@ -428,9 +428,7 @@ Pdata_grow(Pdata *self)
if
(
new_allocated
>
PY_SSIZE_T_MAX
-
allocated
)
goto
nomemory
;
new_allocated
+=
allocated
;
if
(
new_allocated
>
(
PY_SSIZE_T_MAX
/
sizeof
(
PyObject
*
)))
goto
nomemory
;
data
=
PyMem_REALLOC
(
data
,
new_allocated
*
sizeof
(
PyObject
*
));
PyMem_RESIZE
(
data
,
PyObject
*
,
new_allocated
);
if
(
data
==
NULL
)
goto
nomemory
;
...
...
@@ -660,7 +658,7 @@ PyMemoTable_Copy(PyMemoTable *self)
/* The table we get from _New() is probably smaller than we wanted.
Free it and allocate one that's the right size. */
PyMem_FREE
(
new
->
mt_table
);
new
->
mt_table
=
PyMem_
MALLOC
(
self
->
mt_allocated
*
sizeof
(
PyMemoEntry
)
);
new
->
mt_table
=
PyMem_
NEW
(
PyMemoEntry
,
self
->
mt_allocated
);
if
(
new
->
mt_table
==
NULL
)
{
PyMem_FREE
(
new
);
PyErr_NoMemory
();
...
...
@@ -755,7 +753,7 @@ _PyMemoTable_ResizeTable(PyMemoTable *self, Py_ssize_t min_size)
/* Allocate new table. */
oldtable
=
self
->
mt_table
;
self
->
mt_table
=
PyMem_
MALLOC
(
new_size
*
sizeof
(
PyMemoEntry
)
);
self
->
mt_table
=
PyMem_
NEW
(
PyMemoEntry
,
new_size
);
if
(
self
->
mt_table
==
NULL
)
{
self
->
mt_table
=
oldtable
;
PyErr_NoMemory
();
...
...
@@ -1261,16 +1259,14 @@ static int
_Unpickler_ResizeMemoList
(
UnpicklerObject
*
self
,
Py_ssize_t
new_size
)
{
Py_ssize_t
i
;
PyObject
**
memo
;
assert
(
new_size
>
self
->
memo_size
);
memo
=
PyMem_REALLOC
(
self
->
memo
,
new_size
*
sizeof
(
PyObject
*
)
);
if
(
memo
==
NULL
)
{
PyMem_RESIZE
(
self
->
memo
,
PyObject
*
,
new_size
);
if
(
self
->
memo
==
NULL
)
{
PyErr_NoMemory
();
return
-
1
;
}
self
->
memo
=
memo
;
for
(
i
=
self
->
memo_size
;
i
<
new_size
;
i
++
)
self
->
memo
[
i
]
=
NULL
;
self
->
memo_size
=
new_size
;
...
...
@@ -1314,7 +1310,7 @@ _Unpickler_MemoPut(UnpicklerObject *self, Py_ssize_t idx, PyObject *value)
static
PyObject
**
_Unpickler_NewMemo
(
Py_ssize_t
new_size
)
{
PyObject
**
memo
=
PyMem_
MALLOC
(
new_size
*
sizeof
(
PyObject
*
)
);
PyObject
**
memo
=
PyMem_
NEW
(
PyObject
*
,
new_size
);
if
(
memo
==
NULL
)
{
PyErr_NoMemory
();
return
NULL
;
...
...
@@ -5963,7 +5959,6 @@ load_mark(UnpicklerObject *self)
if
((
self
->
num_marks
+
1
)
>=
self
->
marks_size
)
{
size_t
alloc
;
Py_ssize_t
*
marks
;
/* Use the size_t type to check for overflow. */
alloc
=
((
size_t
)
self
->
num_marks
<<
1
)
+
20
;
...
...
@@ -5974,15 +5969,14 @@ load_mark(UnpicklerObject *self)
}
if
(
self
->
marks
==
NULL
)
marks
=
(
Py_ssize_t
*
)
PyMem_Malloc
(
alloc
*
sizeof
(
Py_ssize_t
)
);
self
->
marks
=
PyMem_NEW
(
Py_ssize_t
,
alloc
);
else
marks
=
(
Py_ssize_t
*
)
PyMem_Realloc
(
self
->
marks
,
alloc
*
sizeof
(
Py_ssize_t
));
if
(
marks
==
NULL
)
{
PyMem_RESIZE
(
self
->
marks
,
Py_ssize_t
,
alloc
);
if
(
self
->
marks
==
NULL
)
{
self
->
marks_size
=
0
;
PyErr_NoMemory
();
return
-
1
;
}
self
->
marks
=
marks
;
self
->
marks_size
=
(
Py_ssize_t
)
alloc
;
}
...
...
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