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
10d6ddee
Kaydet (Commit)
10d6ddee
authored
Kas 04, 2012
tarafından
Nick Coghlan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #5765: Also check the compiler when finding the recursion limit
üst
aab9c2b2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
find_recursionlimit.py
Tools/scripts/find_recursionlimit.py
+7
-0
No files found.
Tools/scripts/find_recursionlimit.py
Dosyayı görüntüle @
10d6ddee
...
...
@@ -89,6 +89,12 @@ def test_cpickle(_cache={}):
_pickle
.
Pickler
(
io
.
BytesIO
(),
protocol
=-
1
)
.
dump
(
l
)
_cache
[
n
]
=
l
def
test_compiler_recursion
():
# The compiler uses a scaling factor to support additional levels
# of recursion. This is a sanity check of that scaling to ensure
# it still throws RuntimeError even at higher recursion limits
compile
(
"()"
*
(
10
*
sys
.
getrecursionlimit
()),
"<single>"
,
"single"
)
def
check_limit
(
n
,
test_func_name
):
sys
.
setrecursionlimit
(
n
)
if
test_func_name
.
startswith
(
"test_"
):
...
...
@@ -117,5 +123,6 @@ if __name__ == '__main__':
check_limit
(
limit
,
"test_getattr"
)
check_limit
(
limit
,
"test_getitem"
)
check_limit
(
limit
,
"test_cpickle"
)
check_limit
(
limit
,
"test_compiler_recursion"
)
print
(
"Limit of
%
d is fine"
%
limit
)
limit
=
limit
+
100
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