summaryrefslogtreecommitdiffstats
path: root/Doc/library/sysconfig.rst
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2010-05-25 09:44:36 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2010-05-25 09:44:36 (GMT)
commita7514993637aa2f2514fd7e5ab195088efa31482 (patch)
tree617c8e19f0902e97f4ccaaff8a4affd59c03eef5 /Doc/library/sysconfig.rst
parent4fb18010f5e16533feb7d3e88d8c11ec522cc98b (diff)
downloadcpython-a7514993637aa2f2514fd7e5ab195088efa31482.zip
cpython-a7514993637aa2f2514fd7e5ab195088efa31482.tar.gz
cpython-a7514993637aa2f2514fd7e5ab195088efa31482.tar.bz2
Made sysconfig a script that displays useful information - #8770
Diffstat (limited to 'Doc/library/sysconfig.rst')
-rw-r--r--Doc/library/sysconfig.rst32
1 files changed, 32 insertions, 0 deletions
diff --git a/Doc/library/sysconfig.rst b/Doc/library/sysconfig.rst
index 2426436..0a7e3de 100644
--- a/Doc/library/sysconfig.rst
+++ b/Doc/library/sysconfig.rst
@@ -216,3 +216,35 @@ Other functions
.. function:: get_config_h_filename()
Return the path of :file:`pyconfig.h`.
+
+Using :mod:`sysconfig` as a script
+----------------------------------
+
+You can use :mod:`sysconfig` as a script with Python's *-m* option::
+
+ $ python -m sysconfig
+ Platform: "macosx-10.4-i386"
+ Python version: "3.2"
+ Current installation scheme: "posix_prefix"
+
+ Paths:
+ data = "/usr/local"
+ include = "/Users/tarek/Dev/svn.python.org/py3k/Include"
+ platinclude = "."
+ platlib = "/usr/local/lib/python3.2/site-packages"
+ platstdlib = "/usr/local/lib/python3.2"
+ purelib = "/usr/local/lib/python3.2/site-packages"
+ scripts = "/usr/local/bin"
+ stdlib = "/usr/local/lib/python3.2"
+
+ Variables:
+ AC_APPLE_UNIVERSAL_BUILD = "0"
+ AIX_GENUINE_CPLUSPLUS = "0"
+ AR = "ar"
+ ARFLAGS = "rc"
+ ASDLGEN = "./Parser/asdl_c.py"
+ ...
+
+This call will print in the standard output the information returned by
+:func:`get_platform`, :func:`get_python_version`, :func:`get_path` and
+:func:`get_config_vars`.