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
49239033
Kaydet (Commit)
49239033
authored
Mar 09, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
#11963: merge with 3.3.
üst
ff73758b
0d7333e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
test_parser.py
Lib/test/test_parser.py
+5
-4
No files found.
Lib/test/test_parser.py
Dosyayı görüntüle @
49239033
...
...
@@ -4,6 +4,7 @@ import sys
import
operator
import
struct
from
test
import
support
from
test.script_helper
import
assert_python_failure
#
# First, we test that we can generate trees from valid source fragments,
...
...
@@ -611,10 +612,10 @@ class ParserStackLimitTestCase(unittest.TestCase):
def
test_trigger_memory_error
(
self
):
e
=
self
.
_nested_expression
(
100
)
print
(
"Expecting 's_push: parser stack overflow' in next line"
,
file
=
sys
.
stderr
)
sys
.
stderr
.
flush
(
)
self
.
assert
Raises
(
MemoryError
,
parser
.
expr
,
e
)
rc
,
out
,
err
=
assert_python_failure
(
'-c'
,
e
)
# parsing the expression will result in an error message
# followed by a MemoryError (see #11963
)
self
.
assert
Equal
(
err
,
b
's_push: parser stack overflow
\n
MemoryError'
)
class
STObjectTestCase
(
unittest
.
TestCase
):
"""Test operations on ST objects themselves"""
...
...
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