[pypy-dev] Re: [pypy-svn] r12044 - in pypy/dist/pypy/objspace/std: . test

Samuele Pedroni pedronis at strakt.com
Sun May 8 16:26:36 CEST 2005


Michael Hudson wrote:
> pedronis at codespeak.net 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']
 >>>>






More information about the Pypy-dev mailing list