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
8a230b50
Kaydet (Commit)
8a230b50
authored
Eyl 06, 2006
tarafından
Marc-André Lemburg
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Backport bug fix for SF bug report #1546372.
üst
4dc09524
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
NEWS
Misc/NEWS
+7
-0
pybench.py
Tools/pybench/pybench.py
+7
-2
No files found.
Misc/NEWS
Dosyayı görüntüle @
8a230b50
...
...
@@ -83,6 +83,13 @@ Documentation
to
a
newly
created
list
object
and
add
notes
that
this
isn
't a good idea.
Tools
-----
- Bug #1546372: Fixed small bugglet in pybench that caused a missing
file not to get reported properly.
Build
-----
...
...
Tools/pybench/pybench.py
Dosyayı görüntüle @
8a230b50
...
...
@@ -885,7 +885,7 @@ python pybench.py -s p25.pybench -c p21.pybench
else
:
bench
.
print_benchmark
(
hidenoise
=
hidenoise
,
limitnames
=
limitnames
)
except
IOError
:
except
IOError
,
reason
:
print
'* Error opening/reading file
%
s:
%
s'
%
(
repr
(
show_bench
),
reason
)
...
...
@@ -931,8 +931,13 @@ python pybench.py -s p25.pybench -c p21.pybench
bench
.
name
=
reportfile
pickle
.
dump
(
bench
,
f
)
f
.
close
()
except
IOError
:
except
IOError
,
reason
:
print
'* Error opening/writing reportfile'
except
IOError
,
reason
:
print
'* Error opening/writing reportfile
%
s:
%
s'
%
(
reportfile
,
reason
)
print
if
__name__
==
'__main__'
:
PyBenchCmdline
()
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