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
0df0f6d1
Kaydet (Commit)
0df0f6d1
authored
Mar 08, 2008
tarafından
Jeffrey Yasskin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add tests for with and finally performance to pybench.
üst
c54aec1f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
194 additions
and
0 deletions
+194
-0
Setup.py
Tools/pybench/Setup.py
+4
-0
With.py
Tools/pybench/With.py
+190
-0
No files found.
Tools/pybench/Setup.py
Dosyayı görüntüle @
0df0f6d1
...
@@ -30,6 +30,10 @@ from Lists import *
...
@@ -30,6 +30,10 @@ from Lists import *
from
Tuples
import
*
from
Tuples
import
*
from
Dict
import
*
from
Dict
import
*
from
Exceptions
import
*
from
Exceptions
import
*
try
:
from
With
import
*
except
SyntaxError
:
pass
from
Imports
import
*
from
Imports
import
*
from
Strings
import
*
from
Strings
import
*
from
Numbers
import
*
from
Numbers
import
*
...
...
Tools/pybench/With.py
0 → 100644
Dosyayı görüntüle @
0df0f6d1
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