Commit 42c6c6f5 authored by Robert Bradshaw's avatar Robert Bradshaw

Arg increfing test.

parent b820fbba
def f(dict d):
"""
>>> f({1:1, 2:2})
[1, 2]
"""
cdef dict d_new = {}
l = []
for k in d:
d = d_new
l.append(k)
l.sort()
return l
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment