PEP 370: Resolve unreferenced footnotes (#3233)
This commit is contained in:
parent
8773302acd
commit
7fc4e30ab3
39
pep-0370.txt
39
pep-0370.txt
|
@ -1,7 +1,5 @@
|
||||||
PEP: 370
|
PEP: 370
|
||||||
Title: Per user site-packages directory
|
Title: Per user site-packages directory
|
||||||
Version: $Revision$
|
|
||||||
Last-Modified: $Date$
|
|
||||||
Author: Christian Heimes <christian@python.org>
|
Author: Christian Heimes <christian@python.org>
|
||||||
Status: Final
|
Status: Final
|
||||||
Type: Standards Track
|
Type: Standards Track
|
||||||
|
@ -203,48 +201,39 @@ References
|
||||||
http://peak.telecommunity.com/DevCenter/EasyInstall#creating-a-virtual-python
|
http://peak.telecommunity.com/DevCenter/EasyInstall#creating-a-virtual-python
|
||||||
|
|
||||||
.. [2] Working Env
|
.. [2] Working Env
|
||||||
http://pypi.python.org/pypi/workingenv.py
|
https://pypi.org/project/workingenv.py/
|
||||||
http://blog.ianbicking.org/workingenv-revisited.html
|
https://ianbicking.org/archive/workingenv-revisited.html
|
||||||
|
|
||||||
.. [3] Virtual Env
|
.. [3] Virtual Env
|
||||||
http://pypi.python.org/pypi/virtualenv
|
https://pypi.org/project/virtualenv/
|
||||||
|
|
||||||
.. [4] reference implementation
|
.. [4] reference implementation
|
||||||
http://bugs.python.org/issue1799
|
https://github.com/python/cpython/issues/46132
|
||||||
http://svn.python.org/view/sandbox/trunk/pep370
|
http://svn.python.org/view/sandbox/trunk/pep370
|
||||||
|
|
||||||
.. [5] MSDN: CSIDL
|
.. [5] MSDN: CSIDL
|
||||||
http://msdn2.microsoft.com/en-us/library/bb762494.aspx
|
https://learn.microsoft.com/en/windows/win32/shell/csidl
|
||||||
|
|
||||||
.. [6] Initial suggestion for a per user site-packages directory
|
[6] Initial suggestion for a per user site-packages directory
|
||||||
http://permalink.gmane.org/gmane.comp.python.devel/90902
|
\ https://mail.python.org/archives/list/python-dev@python.org/message/V23CUKRH3VCHFLV33ADMHJSM53STPA7I/
|
||||||
|
|
||||||
.. [7] Suggestion of ~/.local/
|
.. [7] Suggestion of ~/.local/
|
||||||
http://permalink.gmane.org/gmane.comp.python.devel/90925
|
https://mail.python.org/pipermail/python-dev/2008-January/075985.html
|
||||||
|
|
||||||
.. [8] APPDATA discussion
|
.. [8] APPDATA discussion
|
||||||
http://permalink.gmane.org/gmane.comp.python.devel/90932
|
https://mail.python.org/pipermail/python-dev/2008-January/075993.html
|
||||||
|
|
||||||
.. [9] Security concerns and -s option
|
.. [9] Security concerns and -s option
|
||||||
http://permalink.gmane.org/gmane.comp.python.devel/91063
|
https://mail.python.org/pipermail/python-dev/2008-January/076130.html
|
||||||
|
|
||||||
.. [10] Discussion about the bin directory
|
.. [10] Discussion about the bin directory
|
||||||
http://permalink.gmane.org/gmane.comp.python.devel/91095
|
https://mail.python.org/pipermail/python-dev/2008-January/076162.html
|
||||||
|
|
||||||
.. [11] freedesktop.org XGD basedir specs mentions ~/.local
|
.. [11] freedesktop.org XGD basedir specs mentions ~/.local
|
||||||
http://www.freedesktop.org/wiki/Specifications/basedir-spec
|
https://www.freedesktop.org/wiki/Specifications/basedir-spec/
|
||||||
|
|
||||||
.. [12] ~/.local for Mac and usercustomize file
|
.. [12] ~/.local for Mac and usercustomize file
|
||||||
http://permalink.gmane.org/gmane.comp.python.devel/91167
|
https://mail.python.org/pipermail/python-dev/2008-January/076236.html
|
||||||
|
|
||||||
.. [13] Roaming profile on Windows
|
.. [13] Roaming profile on Windows
|
||||||
http://permalink.gmane.org/gmane.comp.python.devel/91187
|
https://mail.python.org/pipermail/python-dev/2008-January/076256.html
|
||||||
|
|
||||||
..
|
|
||||||
Local Variables:
|
|
||||||
mode: indented-text
|
|
||||||
indent-tabs-mode: nil
|
|
||||||
sentence-end-double-space: t
|
|
||||||
fill-column: 70
|
|
||||||
coding: utf-8
|
|
||||||
End:
|
|
||||||
|
|
Loading…
Reference in New Issue