aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* cleanups in lib_pypyBrian Kearns2013-04-061-24/+24
|
* reduce diff with py3kBrian Kearns2013-03-081-1/+1
|
* hash.update() accepts arrays and other objects with the buffer interface.Amaury Forgeot d'Arc2011-01-261-3/+11
| | | | CPython uses the s* code, try to emulate this in Python code.
* merge the sys-prefix branch.Antonio Cuni2010-06-241-0/+285
The most important changes are: 1) trunk/pypy/lib has been moved to trunk/lib_pypy: the code there is really pure python and should not depend on pypy. However, some of the tests existed as AppLevel tests: since they need to be run inside the pypy/ package, they have been moved to pypy/module/test_lib_pypy. Also, a custom conftest makes py.test module/test_lib_pypy also run the tests in ../lib_pypy 2) sys.pypy_prefix has been removed. Instead, sys.prefix and sys.exec_prefix (which are always the same) are added. The prefix is searched at runtime, starting from the directory where the pypy executable resides and walking up until it finds the expected directoris (lib-python and lib_pypy) The layout of the svn checkout has been designed in a way that it will be possibile to run virtualenv -p translator/goal/pypy-c, without needing to install pypy system-wide