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
74c71f5a
Kaydet (Commit)
74c71f5a
authored
May 26, 2008
tarafından
Amaury Forgeot d'Arc
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#2957: marshal recursion limit exceeded when importing a large .pyc file
üst
954aa943
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
2 deletions
+10
-2
test_marshal.py
Lib/test/test_marshal.py
+6
-0
NEWS
Misc/NEWS
+4
-0
marshal.c
Python/marshal.c
+0
-2
No files found.
Lib/test/test_marshal.py
Dosyayı görüntüle @
74c71f5a
...
...
@@ -113,6 +113,12 @@ class CodeTestCase(unittest.TestCase):
new
=
marshal
.
loads
(
marshal
.
dumps
(
co
))
self
.
assertEqual
(
co
,
new
)
def
test_many_codeobjects
(
self
):
# Issue2957: bad recursion count on code objects
count
=
5000
# more than MAX_MARSHAL_STACK_DEPTH
codes
=
(
ExceptionTestCase
.
test_exceptions
.
__code__
,)
*
count
marshal
.
loads
(
marshal
.
dumps
(
codes
))
class
ContainerTestCase
(
unittest
.
TestCase
,
HelperMixin
):
d
=
{
'astring'
:
'foo@bar.baz.spam'
,
'afloat'
:
7283.43
,
...
...
Misc/NEWS
Dosyayı görüntüle @
74c71f5a
...
...
@@ -12,6 +12,10 @@ What's new in Python 3.0b1?
Core and Builtins
-----------------
- Issue #2957: Corrected a ValueError "recursion limit exceeded", when
unmarshalling many code objects, which happens when importing a
large .pyc file (~1000 functions).
- Issue #2963: fix merging oversight that disabled method cache for
all types.
...
...
Python/marshal.c
Dosyayı görüntüle @
74c71f5a
...
...
@@ -913,8 +913,6 @@ r_object(RFILE *p)
Py_XDECREF
(
filename
);
Py_XDECREF
(
name
);
Py_XDECREF
(
lnotab
);
return
v
;
}
retval
=
v
;
break
;
...
...
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