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
6a4e3c5f
Kaydet (Commit)
6a4e3c5f
authored
Tem 04, 2010
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make Demo/parser/test_parser.py run.
üst
feb3b758
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
test_parser.py
Demo/parser/test_parser.py
+6
-6
No files found.
Demo/parser/test_parser.py
Dosyayı görüntüle @
6a4e3c5f
...
...
@@ -11,19 +11,19 @@ def testChunk(t, fileName):
global
_numFailed
print
(
'----'
,
fileName
,
end
=
' '
)
try
:
a
st
=
parser
.
suite
(
t
)
tup
=
parser
.
ast2tuple
(
a
st
)
# this discards the first
A
ST; a huge memory savings when running
st
=
parser
.
suite
(
t
)
tup
=
parser
.
st2tuple
(
st
)
# this discards the first ST; a huge memory savings when running
# against a large source file like Tkinter.py.
a
st
=
None
new
=
parser
.
tuple2
a
st
(
tup
)
st
=
None
new
=
parser
.
tuple2st
(
tup
)
except
parser
.
ParserError
as
err
:
print
()
print
(
'parser module raised exception on input file'
,
fileName
+
':'
)
traceback
.
print_exc
()
_numFailed
=
_numFailed
+
1
else
:
if
tup
!=
parser
.
a
st2tuple
(
new
):
if
tup
!=
parser
.
st2tuple
(
new
):
print
()
print
(
'parser module failed on input file'
,
fileName
)
_numFailed
=
_numFailed
+
1
...
...
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