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
810c64df
Commit
810c64df
authored
May 11, 2012
by
Brett Cannon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #14764: Update importlib.test.benchmark to work in a world where
import machinery is no longer implicit.
parent
9d335113
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
Lib/importlib/test/benchmark.py
Lib/importlib/test/benchmark.py
+14
-0
No files found.
Lib/importlib/test/benchmark.py
View file @
810c64df
...
...
@@ -9,6 +9,8 @@ from .source import util as source_util
import
decimal
import
imp
import
importlib
import
importlib._bootstrap
import
importlib.machinery
import
json
import
os
import
py_compile
...
...
@@ -68,6 +70,10 @@ def source_wo_bytecode(seconds, repeat):
# Clears out sys.modules and puts an entry at the front of sys.path.
with
source_util
.
create_modules
(
name
)
as
mapping
:
assert
not
os
.
path
.
exists
(
imp
.
cache_from_source
(
mapping
[
name
]))
sys
.
meta_path
.
append
(
importlib
.
machinery
.
PathFinder
)
loader
=
(
importlib
.
machinery
.
SourceFileLoader
,
importlib
.
_bootstrap
.
_SOURCE_SUFFIXES
,
True
)
sys
.
path_hooks
.
append
(
importlib
.
machinery
.
FileFinder
.
path_hook
(
loader
))
for
result
in
bench
(
name
,
lambda
:
sys
.
modules
.
pop
(
name
),
repeat
=
repeat
,
seconds
=
seconds
):
yield
result
...
...
@@ -102,6 +108,10 @@ def source_writing_bytecode(seconds, repeat):
assert
not
sys
.
dont_write_bytecode
name
=
'__importlib_test_benchmark__'
with
source_util
.
create_modules
(
name
)
as
mapping
:
sys
.
meta_path
.
append
(
importlib
.
machinery
.
PathFinder
)
loader
=
(
importlib
.
machinery
.
SourceFileLoader
,
importlib
.
_bootstrap
.
_SOURCE_SUFFIXES
,
True
)
sys
.
path_hooks
.
append
(
importlib
.
machinery
.
FileFinder
.
path_hook
(
loader
))
def
cleanup
():
sys
.
modules
.
pop
(
name
)
os
.
unlink
(
imp
.
cache_from_source
(
mapping
[
name
]))
...
...
@@ -133,6 +143,10 @@ def source_using_bytecode(seconds, repeat):
"""Source w/ bytecode: small"""
name
=
'__importlib_test_benchmark__'
with
source_util
.
create_modules
(
name
)
as
mapping
:
sys
.
meta_path
.
append
(
importlib
.
machinery
.
PathFinder
)
loader
=
(
importlib
.
machinery
.
SourceFileLoader
,
importlib
.
_bootstrap
.
_SOURCE_SUFFIXES
,
True
)
sys
.
path_hooks
.
append
(
importlib
.
machinery
.
FileFinder
.
path_hook
(
loader
))
py_compile
.
compile
(
mapping
[
name
])
assert
os
.
path
.
exists
(
imp
.
cache_from_source
(
mapping
[
name
]))
for
result
in
bench
(
name
,
lambda
:
sys
.
modules
.
pop
(
name
),
repeat
=
repeat
,
...
...
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