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
2eb2c7c3
Kaydet (Commit)
2eb2c7c3
authored
Mar 20, 2008
tarafından
Amaury Forgeot d'Arc
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#2435: missing file in pybench
svnmerge seems to forget every added file.
üst
d24a5b60
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
190 additions
and
0 deletions
+190
-0
With.py
Tools/pybench/With.py
+190
-0
No files found.
Tools/pybench/With.py
0 → 100644
Dosyayı görüntüle @
2eb2c7c3
from
__future__
import
with_statement
from
pybench
import
Test
class
WithFinally
(
Test
):
version
=
2.0
operations
=
20
rounds
=
80000
class
ContextManager
(
object
):
def
__enter__
(
self
):
pass
def
__exit__
(
self
,
exc
,
val
,
tb
):
pass
def
test
(
self
):
cm
=
self
.
ContextManager
()
for
i
in
xrange
(
self
.
rounds
):
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
with
cm
:
pass
def
calibrate
(
self
):
cm
=
self
.
ContextManager
()
for
i
in
xrange
(
self
.
rounds
):
pass
class
TryFinally
(
Test
):
version
=
2.0
operations
=
20
rounds
=
80000
class
ContextManager
(
object
):
def
__enter__
(
self
):
pass
def
__exit__
(
self
):
# "Context manager" objects used just for their cleanup
# actions in finally blocks usually don't have parameters.
pass
def
test
(
self
):
cm
=
self
.
ContextManager
()
for
i
in
xrange
(
self
.
rounds
):
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
cm
.
__enter__
()
try
:
pass
finally
:
cm
.
__exit__
()
def
calibrate
(
self
):
cm
=
self
.
ContextManager
()
for
i
in
xrange
(
self
.
rounds
):
pass
class
WithRaiseExcept
(
Test
):
version
=
2.0
operations
=
2
+
3
+
3
rounds
=
100000
class
BlockExceptions
(
object
):
def
__enter__
(
self
):
pass
def
__exit__
(
self
,
exc
,
val
,
tb
):
return
True
def
test
(
self
):
error
=
ValueError
be
=
self
.
BlockExceptions
()
for
i
in
xrange
(
self
.
rounds
):
with
be
:
raise
error
with
be
:
raise
error
with
be
:
raise
error
,
"something"
with
be
:
raise
error
,
"something"
with
be
:
raise
error
,
"something"
with
be
:
raise
error
(
"something"
)
with
be
:
raise
error
(
"something"
)
with
be
:
raise
error
(
"something"
)
def
calibrate
(
self
):
error
=
ValueError
be
=
self
.
BlockExceptions
()
for
i
in
xrange
(
self
.
rounds
):
pass
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