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
7b9bcb84
Kaydet (Commit)
7b9bcb84
authored
Tem 15, 2010
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Touch up comments and code along with outputting what the unit of measure is.
üst
0736767f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
benchmark.py
Lib/importlib/test/benchmark.py
+10
-7
No files found.
Lib/importlib/test/benchmark.py
Dosyayı görüntüle @
7b9bcb84
"""Benchmark some basic import use-cases."""
# XXX
# - Bench from source (turn off bytecode generation)
# - Bench from bytecode (remove existence of source)
# - Bench bytecode generation
# - Bench extensions
# - from source
# + sys.dont_write_bytecode = True
# + sys.dont_write_bytecode = False
# - from bytecode
# - extensions
from
.
import
util
from
.source
import
util
as
source_util
import
imp
...
...
@@ -30,7 +31,7 @@ def bench(name, cleanup=lambda: None, *, seconds=1, repeat=3):
# One execution too far
if
total_time
>
seconds
:
count
-=
1
yield
count
yield
count
//
seconds
def
from_cache
(
repeat
):
"""sys.modules"""
...
...
@@ -49,13 +50,15 @@ def builtin_mod(repeat):
name
=
'errno'
if
name
in
sys
.
modules
:
del
sys
.
modules
[
name
]
# Relying on built-in importer being implicit.
for
result
in
bench
(
name
,
lambda
:
sys
.
modules
.
pop
(
name
),
repeat
=
repeat
):
yield
result
def
main
(
import_
,
repeat
=
3
):
def
main
(
import_
,
*
,
repeat
=
3
):
__builtins__
.
__import__
=
import_
benchmarks
=
from_cache
,
builtin_mod
print
(
"Measuring imports/second
\n
"
)
for
benchmark
in
benchmarks
:
print
(
benchmark
.
__doc__
,
"["
,
end
=
' '
)
sys
.
stdout
.
flush
()
...
...
@@ -75,7 +78,7 @@ if __name__ == '__main__':
default
=
False
,
help
=
"use the built-in __import__"
)
options
,
args
=
parser
.
parse_args
()
if
args
:
raise
RuntimeError
(
"unrecognized args: {
0
}"
.
format
(
args
))
raise
RuntimeError
(
"unrecognized args: {}"
.
format
(
args
))
import_
=
__import__
if
not
options
.
builtin
:
import_
=
importlib
.
__import__
...
...
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