Fix a few typos.
This commit is contained in:
parent
8ec85d4d6f
commit
dcd2305766
14
pep-0370.txt
14
pep-0370.txt
|
@ -21,11 +21,11 @@ users the local installation of Python packages in their home directory.
|
||||||
Rationale
|
Rationale
|
||||||
=========
|
=========
|
||||||
|
|
||||||
Current Python versions don't have an unified way to install packages
|
Current Python versions don't have a unified way to install packages
|
||||||
into the home directory of an user (except for Mac Framework
|
into the home directory of a user (except for Mac Framework
|
||||||
builds). Users are either forced to ask the system administrator to
|
builds). Users are either forced to ask the system administrator to
|
||||||
install or update a package for them or to use one of the many
|
install or update a package for them or to use one of the many
|
||||||
workaround like Virtual Python [1]_, Working Env [2]_ or
|
workarounds like Virtual Python [1]_, Working Env [2]_ or
|
||||||
Virtual Env [3]_.
|
Virtual Env [3]_.
|
||||||
|
|
||||||
It's not the goal of the PEP to replace the tools or to implement
|
It's not the goal of the PEP to replace the tools or to implement
|
||||||
|
@ -49,11 +49,11 @@ site directory (site-packages)
|
||||||
|
|
||||||
user site directory
|
user site directory
|
||||||
|
|
||||||
A site directory inside the users' home directory. An user site
|
A site directory inside the users' home directory. A user site
|
||||||
directory is specific to a Python version. The path contains
|
directory is specific to a Python version. The path contains
|
||||||
the version number (major and minor only).
|
the version number (major and minor only).
|
||||||
|
|
||||||
Unix (including Mac)
|
Unix (including Mac OS X)
|
||||||
``~/.local/lib/python2.6/site-packages``
|
``~/.local/lib/python2.6/site-packages``
|
||||||
Windows
|
Windows
|
||||||
``%APPDATA%/Python/Python26/site-packages``
|
``%APPDATA%/Python/Python26/site-packages``
|
||||||
|
@ -97,7 +97,7 @@ Windows Notes
|
||||||
On Windows the *Application Data* directory (aka ``APPDATA``) was chosen
|
On Windows the *Application Data* directory (aka ``APPDATA``) was chosen
|
||||||
because it is the most designated place for application data. Microsoft
|
because it is the most designated place for application data. Microsoft
|
||||||
recommands that software doesn't write to ``USERPROFILE`` [5]_ and
|
recommands that software doesn't write to ``USERPROFILE`` [5]_ and
|
||||||
``My Documents`` is not suited for application data, too. [8]_ The code
|
``My Documents`` is not suited for application data, either. [8]_ The code
|
||||||
doesn't query the Win32 API, instead it uses the environment variable
|
doesn't query the Win32 API, instead it uses the environment variable
|
||||||
%APPDATA%.
|
%APPDATA%.
|
||||||
|
|
||||||
|
@ -121,7 +121,7 @@ Mac OS X Notes
|
||||||
--------------
|
--------------
|
||||||
|
|
||||||
On Mac OS X Python uses ~/.local directory as well. [12]_ Framework builds
|
On Mac OS X Python uses ~/.local directory as well. [12]_ Framework builds
|
||||||
if Python include ``~/Library/Python/2.6/site-packages`` as an additional
|
of Python include ``~/Library/Python/2.6/site-packages`` as an additional
|
||||||
search path.
|
search path.
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue