[Python-checkins] r55069 - peps/trunk/pep-0365.txt
phillip.eby
python-checkins at python.org
Wed May 2 05:07:03 CEST 2007
Author: phillip.eby
Date: Wed May 2 05:06:55 2007
New Revision: 55069
Modified:
peps/trunk/pep-0365.txt
Log:
Fix wrong environment variable name
Modified: peps/trunk/pep-0365.txt
==============================================================================
--- peps/trunk/pep-0365.txt (original)
+++ peps/trunk/pep-0365.txt Wed May 2 05:06:55 2007
@@ -48,10 +48,10 @@
This feature would *not* be a replacement for ``easy_install``;
instead, it would rely on ``SomePackage`` having pure-Python ``.egg``
files listed for download via the PyPI XML-RPC API, and the eggs would
-be placed in the ``$PYTHONEGGS`` cache, where they would **not** be
-importable by default. (And no scripts would be installed) However,
-if the download egg contains installation bootstrap code, it will be
-given a chance to run.
+be placed in the ``$PYTHON_EGG_CACHE`` directory, where they would
+**not** be importable by default. (And no scripts would be installed.)
+However, if the download egg contains installation bootstrap code, it
+will be given a chance to run.
These restrictions would allow the code to be extremely simple, yet
still powerful enough to support users downloading package management
More information about the Python-checkins
mailing list