[EMAIL PROTECTED] writes:
+ assert sorted(d[0].keys()) == ['__dict__','__metaclass__','__module__']
So we require Python 2.4 now?
no, the plan I think is to switch after the first release.
That test is a PyPy own app-level test (right now we don't run them on top of CPython and in fact some of them would not pass there), PyPy already defines sorted on top of Python2.3 too:
PyPy in StdObjSpace on top of Python 2.3 (startupttime: 1.74 secs) >>>> sorted(['a', 'c', 'b']) ['a', 'b', 'c'] >>>>
_______________________________________________ [email protected] http://codespeak.net/mailman/listinfo/pypy-dev
