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
a49178e4
Kaydet (Commit)
a49178e4
authored
Mar 20, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
#17493: merge with 3.2.
üst
ba7dd670
958f7ae8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
11 deletions
+9
-11
test_sys.py
Lib/test/test_sys.py
+9
-11
No files found.
Lib/test/test_sys.py
Dosyayı görüntüle @
a49178e4
...
...
@@ -237,9 +237,6 @@ class SysModuleTest(unittest.TestCase):
def
test_recursionlimit_fatalerror
(
self
):
# A fatal error occurs if a second recursion limit is hit when recovering
# from a first one.
if
os
.
name
==
"nt"
:
raise
unittest
.
SkipTest
(
"under Windows, test would generate a spurious crash dialog"
)
code
=
textwrap
.
dedent
(
"""
import sys
...
...
@@ -251,14 +248,15 @@ class SysModuleTest(unittest.TestCase):
sys.setrecursionlimit(
%
d)
f()"""
)
for
i
in
(
50
,
1000
):
sub
=
subprocess
.
Popen
([
sys
.
executable
,
'-c'
,
code
%
i
],
stderr
=
subprocess
.
PIPE
)
err
=
sub
.
communicate
()[
1
]
self
.
assertTrue
(
sub
.
returncode
,
sub
.
returncode
)
self
.
assertTrue
(
b
"Fatal Python error: Cannot recover from stack overflow"
in
err
,
err
)
with
test
.
support
.
suppress_crash_popup
():
for
i
in
(
50
,
1000
):
sub
=
subprocess
.
Popen
([
sys
.
executable
,
'-c'
,
code
%
i
],
stderr
=
subprocess
.
PIPE
)
err
=
sub
.
communicate
()[
1
]
self
.
assertTrue
(
sub
.
returncode
,
sub
.
returncode
)
self
.
assertIn
(
b
"Fatal Python error: Cannot recover from stack overflow"
,
err
)
def
test_getwindowsversion
(
self
):
# Raise SkipTest if sys doesn't have getwindowsversion attribute
...
...
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