Commit e1ca469b authored by Stefan Behnel's avatar Stefan Behnel

deleted unnecessary helper code from Py2.6+ test

parent 32460232
......@@ -4,14 +4,6 @@
cimport cython
try:
sorted
except NameError:
def sorted(seq):
seq = list(seq)
seq.sort()
return seq
__doc__ = """
>>> items = list(locals_function(1).items())
>>> items.sort()
......
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