PEP 376: Use the correct directory separator style (GH-549)
`/` for unix-like path separator, and `\` for Windows path separator.
This commit is contained in:
parent
f138b81300
commit
9002a8f2f4
|
@ -43,8 +43,8 @@ Right now, when a distribution is installed in Python, every element can
|
|||
be installed in a different directory.
|
||||
|
||||
For instance, `Distutils` installs the pure Python code in the `purelib`
|
||||
directory, which is ``lib\python2.6\site-packages`` for unix-like systems and
|
||||
Mac OS X, or `Lib/site-packages` under Python's installation directory for
|
||||
directory, which is ``lib/python2.6/site-packages`` for unix-like systems and
|
||||
Mac OS X, or `Lib\site-packages` under Python's installation directory for
|
||||
Windows.
|
||||
|
||||
Additionally, the `install_egg_info` subcommand of the Distutils `install`
|
||||
|
|
Loading…
Reference in New Issue