[Python-checkins] cpython (merge 3.3 -> default): Fix typo in embedding doc and update examples to 3.4.

ned.deily python-checkins at python.org
Mon May 27 03:57:43 CEST 2013


http://hg.python.org/cpython/rev/39e0be9106c1
changeset:   83935:39e0be9106c1
parent:      83933:0a7d237c0919
parent:      83934:e57c8a90b2df
user:        Ned Deily <nad at acm.org>
date:        Sun May 26 18:57:00 2013 -0700
summary:
  Fix typo in embedding doc and update examples to 3.4.

files:
  Doc/extending/embedding.rst |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Doc/extending/embedding.rst b/Doc/extending/embedding.rst
--- a/Doc/extending/embedding.rst
+++ b/Doc/extending/embedding.rst
@@ -285,14 +285,14 @@
 * ``pythonX.Y-config --cflags`` will give you the recommended flags when
   compiling::
 
-   $ /opt/bin/python3.2-config --cflags
-   -I/opt/include/python3.2m -I/opt/include/python3.2m -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes
+   $ /opt/bin/python3.4-config --cflags
+   -I/opt/include/python3.4m -I/opt/include/python3.4m -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes
 
 * ``pythonX.Y-config --ldflags`` will give you the recommended flags when
   linking::
 
-   $ /opt/bin/python3.2-config --ldflags
-   -I/opt/lib/python3.2/config-3.2m -lpthread -ldl -lutil -lm -lpython3.2m -Xlinker -export-dynamic
+   $ /opt/bin/python3.4-config --ldflags
+   -L/opt/lib/python3.4/config-3.4m -lpthread -ldl -lutil -lm -lpython3.4m -Xlinker -export-dynamic
 
 .. note::
    To avoid confusion between several Python installations (and especially

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list