summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorŁukasz Langa <lukasz@langa.pl>2010-12-17 22:05:46 (GMT)
committerŁukasz Langa <lukasz@langa.pl>2010-12-17 22:05:46 (GMT)
commit79a06ed567f4c9c4162f2ddcc30f9f22cd4aef2f (patch)
tree0c4615e867f1381221fa9c67ad4303771c819dcc
parent2b38b6cee8a8fe2776111a26375dd5e50c76fee4 (diff)
downloadcpython-79a06ed567f4c9c4162f2ddcc30f9f22cd4aef2f.zip
cpython-79a06ed567f4c9c4162f2ddcc30f9f22cd4aef2f.tar.gz
cpython-79a06ed567f4c9c4162f2ddcc30f9f22cd4aef2f.tar.bz2
fix for an embarrassing autoformatting SNAFU. Thanks for your alertness, Antoine.
-rw-r--r--Doc/whatsnew/3.2.rst35
1 files changed, 24 insertions, 11 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index 2eb90b3..507750b 100644
--- a/Doc/whatsnew/3.2.rst
+++ b/Doc/whatsnew/3.2.rst
@@ -1220,20 +1220,33 @@ There is also a convenient command-line interface::
Paths:
data = "C:\Python32"
- include = "C:\Python32\Include" platinclude = "C:\Python32\Include"
- platlib = "C:\Python32\Lib\site-packages" platstdlib
- = "C:\Python32\Lib" purelib = "C:\Python32\Lib\site-packages" scripts
- = "C:\Python32\Scripts" stdlib = "C:\Python32\Lib"
+ include = "C:\Python32\Include"
+ platinclude = "C:\Python32\Include"
+ platlib = "C:\Python32\Lib\site-packages"
+ platstdlib = "C:\Python32\Lib"
+ purelib = "C:\Python32\Lib\site-packages"
+ scripts = "C:\Python32\Scripts"
+ stdlib = "C:\Python32\Lib"
Variables:
BINDIR = "C:\Python32"
- BINLIBDEST = "C:\Python32\Lib" EXE = ".exe" INCLUDEPY
- = "C:\Python32\Include" LIBDEST = "C:\Python32\Lib" SO = ".pyd"
- VERSION = "32" abiflags = "" base = "C:\Python32" exec_prefix
- = "C:\Python32" platbase = "C:\Python32" prefix = "C:\Python32"
- projectbase = "C:\Python32" py_version = "3.2" py_version_nodot = "32"
- py_version_short = "3.2" srcdir = "C:\Python32" userbase
- = "C:\Documents and Settings\Raymond\Application Data\Python"
+ BINLIBDEST = "C:\Python32\Lib"
+ EXE = ".exe"
+ INCLUDEPY = "C:\Python32\Include"
+ LIBDEST = "C:\Python32\Lib"
+ SO = ".pyd"
+ VERSION = "32"
+ abiflags = ""
+ base = "C:\Python32"
+ exec_prefix = "C:\Python32"
+ platbase = "C:\Python32"
+ prefix = "C:\Python32"
+ projectbase = "C:\Python32"
+ py_version = "3.2"
+ py_version_nodot = "32"
+ py_version_short = "3.2"
+ srcdir = "C:\Python32"
+ userbase = "C:\Documents and Settings\Raymond\Application Data\Python"
pdb
---