]> granicus.if.org Git - python/commitdiff
Fix typo in embedding doc and update examples to 3.4.
authorNed Deily <nad@acm.org>
Mon, 27 May 2013 01:57:00 +0000 (18:57 -0700)
committerNed Deily <nad@acm.org>
Mon, 27 May 2013 01:57:00 +0000 (18:57 -0700)
1  2 
Doc/extending/embedding.rst

index 9761e25e40c44011a2db475581ef1c9777fa2c69,c68aff88ed1bb2532c8255b47a46cce117750dd9..3754380af8128da03cded0c0ea8799b804cca799
@@@ -285,14 -285,14 +285,14 @@@ be directly useful to you
  * ``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.3-config --cflags
 -   -I/opt/include/python3.3m -I/opt/include/python3.3m -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.3-config --ldflags
 -   -L/opt/lib/python3.3/config-3.3m -lpthread -ldl -lutil -lm -lpython3.3m -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