Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
49d3b27c
Commit
49d3b27c
authored
Mar 20, 2008
by
Amaury Forgeot d'Arc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#2435: missing file in pybench
svnmerge seems to forget every added file.
parent
5c609000
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
190 additions
and
0 deletions
+190
-0
Tools/pybench/With.py
Tools/pybench/With.py
+190
-0
No files found.
Tools/pybench/With.py
0 → 100644
View file @
49d3b27c
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