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
763d309b
Kaydet (Commit)
763d309b
authored
Haz 30, 2008
tarafından
Facundo Batista
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix #2702, with a correct accounting of recursion.
üst
1e022689
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
25 deletions
+25
-25
test_cpickle.py
Lib/test/test_cpickle.py
+11
-15
cPickle.c
Modules/cPickle.c
+14
-10
No files found.
Lib/test/test_cpickle.py
Dosyayı görüntüle @
763d309b
...
...
@@ -94,23 +94,19 @@ class Node(object):
pass
class
cPickleDeepRecursive
(
unittest
.
TestCase
):
# I commented out, because the patch that fixes this was reverted, as
# it broke the next test case. Check the issues for full history.
# def test_issue2702(self):
# '''This should raise a RecursionLimit but in some
# platforms (FreeBSD, win32) sometimes raises KeyError instead,
# or just silently terminates the interpreter (=crashes).
# '''
# nodes = [Node() for i in range(500)]
# for n in nodes:
# n.connections = list(nodes)
# n.connections.remove(n)
# self.assertRaises(RuntimeError, cPickle.dumps, n)
def
test_issue2702
(
self
):
# This should raise a RecursionLimit but in some
# platforms (FreeBSD, win32) sometimes raises KeyError instead,
# or just silently terminates the interpreter (=crashes).
nodes
=
[
Node
()
for
i
in
range
(
500
)]
for
n
in
nodes
:
n
.
connections
=
list
(
nodes
)
n
.
connections
.
remove
(
n
)
self
.
assertRaises
(
RuntimeError
,
cPickle
.
dumps
,
n
)
def
test_issue3179
(
self
):
'''Safe test, because of I broken this case when fixing the
behaviour for the previous test.
'''
# Safe test, because I broke this case when fixing the
# behaviour for the previous test.
res
=
[]
for
x
in
range
(
1
,
2000
):
res
.
append
(
dict
(
doc
=
x
,
similar
=
[]))
...
...
Modules/cPickle.c
Dosyayı görüntüle @
763d309b
...
...
@@ -339,7 +339,6 @@ typedef struct Picklerobject {
int
bin
;
int
fast
;
/* Fast mode doesn't save in memo, don't use if circ ref */
int
nesting
;
int
(
*
write_func
)(
struct
Picklerobject
*
,
const
char
*
,
Py_ssize_t
);
char
*
write_buf
;
int
buf_size
;
...
...
@@ -1630,7 +1629,12 @@ save_list(Picklerobject *self, PyObject *args)
iter
=
PyObject_GetIter
(
args
);
if
(
iter
==
NULL
)
goto
finally
;
res
=
batch_list
(
self
,
iter
);
if
(
Py_EnterRecursiveCall
(
" while pickling an object"
)
==
0
)
{
res
=
batch_list
(
self
,
iter
);
Py_LeaveRecursiveCall
();
}
Py_DECREF
(
iter
);
finally:
...
...
@@ -1786,7 +1790,11 @@ save_dict(Picklerobject *self, PyObject *args)
iter
=
PyObject_CallMethod
(
args
,
"iteritems"
,
"()"
);
if
(
iter
==
NULL
)
goto
finally
;
res
=
batch_dict
(
self
,
iter
);
if
(
Py_EnterRecursiveCall
(
" while pickling an object"
)
==
0
)
{
res
=
batch_dict
(
self
,
iter
);
Py_LeaveRecursiveCall
();
}
Py_DECREF
(
iter
);
finally:
...
...
@@ -2306,11 +2314,8 @@ save(Picklerobject *self, PyObject *args, int pers_save)
int
res
=
-
1
;
int
tmp
,
size
;
if
(
self
->
nesting
++
>
Py_GetRecursionLimit
()){
PyErr_SetString
(
PyExc_RuntimeError
,
"maximum recursion depth exceeded"
);
goto
finally
;
}
if
(
Py_EnterRecursiveCall
(
" while pickling an object"
))
return
-
1
;
if
(
!
pers_save
&&
self
->
pers_func
)
{
if
((
tmp
=
save_pers
(
self
,
args
,
self
->
pers_func
))
!=
0
)
{
...
...
@@ -2559,7 +2564,7 @@ save(Picklerobject *self, PyObject *args, int pers_save)
res
=
save_reduce
(
self
,
t
,
args
);
finally:
self
->
nesting
--
;
Py_LeaveRecursiveCall
()
;
Py_XDECREF
(
py_ob_id
);
Py_XDECREF
(
__reduce__
);
Py_XDECREF
(
t
);
...
...
@@ -2801,7 +2806,6 @@ newPicklerobject(PyObject *file, int proto)
self
->
inst_pers_func
=
NULL
;
self
->
write_buf
=
NULL
;
self
->
fast
=
0
;
self
->
nesting
=
0
;
self
->
fast_container
=
0
;
self
->
fast_memo
=
NULL
;
self
->
buf_size
=
0
;
...
...
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