Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
98bd96fb
Commit
98bd96fb
authored
Feb 22, 2010
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
typo
--HG-- rename : tests/run/dict_getitme.pyx => tests/run/dict_getitem.pyx
parent
69881583
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
tests/run/dict_getitem.pyx
tests/run/dict_getitem.pyx
+22
-0
No files found.
tests/run/dict_getit
me
.pyx
→
tests/run/dict_getit
em
.pyx
View file @
98bd96fb
...
...
@@ -28,3 +28,25 @@ def test(dict d, index):
TypeError: 'NoneType' object is unsubscriptable
"""
return
d
[
index
]
def
time_dict
(
dict
d
,
ix
,
long
N
):
"""
>>> time_dict({"abc": 1}, "abc", 1e6)
"""
from
time
import
time
t
=
time
()
cdef
int
i
for
i
in
range
(
N
):
d
[
ix
]
return
time
()
-
t
def
time_nondict
(
object
d
,
ix
,
long
N
):
"""
>>> time_nondict({"abc": 1}, "abc", 1e6)
"""
from
time
import
time
t
=
time
()
cdef
int
i
for
i
in
range
(
N
):
d
[
ix
]
return
time
()
-
t
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