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
ced770da
Kaydet (Commit)
ced770da
authored
Tem 15, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #24631: Fixed regression in the timeit modulu with multyline setup.
üst
76d508b5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
6 deletions
+13
-6
test_timeit.py
Lib/test/test_timeit.py
+8
-2
timeit.py
Lib/timeit.py
+3
-4
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_timeit.py
Dosyayı görüntüle @
ced770da
...
...
@@ -88,8 +88,8 @@ class TestTimeit(unittest.TestCase):
self
.
assertRaises
(
SyntaxError
,
timeit
.
Timer
,
setup
=
'continue'
)
self
.
assertRaises
(
SyntaxError
,
timeit
.
Timer
,
setup
=
'from timeit import *'
)
fake_setup
=
"import timeit
;
timeit._fake_timer.setup()"
fake_stmt
=
"import timeit
;
timeit._fake_timer.inc()"
fake_setup
=
"import timeit
\n
timeit._fake_timer.setup()"
fake_stmt
=
"import timeit
\n
timeit._fake_timer.inc()"
def
fake_callable_setup
(
self
):
self
.
fake_timer
.
setup
()
...
...
@@ -272,6 +272,12 @@ class TestTimeit(unittest.TestCase):
self
.
assertEqual
(
s
,
"CustomSetup
\n
"
*
3
+
"35 loops, best of 3: 2 sec per loop
\n
"
)
def
test_main_multiple_setups
(
self
):
s
=
self
.
run_main
(
seconds_per_increment
=
2.0
,
switches
=
[
'-n35'
,
'-s'
,
'a = "CustomSetup"'
,
'-s'
,
'print(a)'
])
self
.
assertEqual
(
s
,
"CustomSetup
\n
"
*
3
+
"35 loops, best of 3: 2 sec per loop
\n
"
)
def
test_main_fixed_reps
(
self
):
s
=
self
.
run_main
(
seconds_per_increment
=
60.0
,
switches
=
[
'-r9'
])
self
.
assertEqual
(
s
,
"10 loops, best of 9: 60 sec per loop
\n
"
)
...
...
Lib/timeit.py
Dosyayı görüntüle @
ced770da
...
...
@@ -109,19 +109,18 @@ class Timer:
if
isinstance
(
setup
,
str
):
# Check that the code can be compiled outside a function
compile
(
setup
,
dummy_src_name
,
"exec"
)
stmtprefix
=
setup
+
'
\n
'
setup
=
reindent
(
setup
,
4
)
elif
callable
(
setup
):
local_ns
[
'_setup'
]
=
setup
init
+=
', _setup=_setup'
stmtprefix
=
''
setup
=
'_setup()'
else
:
raise
ValueError
(
"setup is neither a string nor callable"
)
if
isinstance
(
stmt
,
str
):
# Check that the code can be compiled outside a function
if
isinstance
(
setup
,
str
):
compile
(
setup
+
'
\n
'
+
stmt
,
dummy_src_name
,
"exec"
)
else
:
compile
(
stmt
,
dummy_src_name
,
"exec"
)
compile
(
stmtprefix
+
stmt
,
dummy_src_name
,
"exec"
)
stmt
=
reindent
(
stmt
,
8
)
elif
callable
(
stmt
):
local_ns
[
'_stmt'
]
=
stmt
...
...
Misc/NEWS
Dosyayı görüntüle @
ced770da
...
...
@@ -17,6 +17,8 @@ Core and Builtins
Library
-------
- Issue #24631: Fixed regression in the timeit modulu with multyline setup.
- Issue #18622: unittest.mock.mock_open().reset_mock would recurse infinitely.
Patch from Nicola Palumbo and Laurent De Buyst.
...
...
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