diff options
author | Antonio Cuni <anto.cuni@gmail.com> | 2010-06-24 10:44:22 +0000 |
---|---|---|
committer | Antonio Cuni <anto.cuni@gmail.com> | 2010-06-24 10:44:22 +0000 |
commit | 16ba5b7549d7fd2a82cf2d8be30d8568bc1cc24c (patch) | |
tree | e5d588130bb9e434080aacc197fbcd32bd380650 /site-packages | |
parent | An attempt to move calling of getfilesystemencoding a bit after (lazily is good) (diff) | |
download | pypy-16ba5b7549d7fd2a82cf2d8be30d8568bc1cc24c.tar.gz pypy-16ba5b7549d7fd2a82cf2d8be30d8568bc1cc24c.tar.bz2 pypy-16ba5b7549d7fd2a82cf2d8be30d8568bc1cc24c.zip |
merge the sys-prefix branch.
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
Diffstat (limited to 'site-packages')
-rw-r--r-- | site-packages/README | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/site-packages/README b/site-packages/README new file mode 100644 index 0000000000..273f6251a7 --- /dev/null +++ b/site-packages/README @@ -0,0 +1,2 @@ +This directory exists so that 3rd party packages can be installed +here. Read the source for site.py for more details. |