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:
cosven 2018-01-18 11:44:30 +08:00 committed by Mariatta
parent f138b81300
commit 9002a8f2f4
1 changed files with 2 additions and 2 deletions

View File

@ -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`