diff options
author | Barry Warsaw <barry@python.org> | 2010-09-20 15:29:53 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2010-09-20 15:29:53 (GMT) |
commit | ebbef6fef2e1c70aaa23ee27dcfc237545dee5d5 (patch) | |
tree | 3db4f4633663af56b9db644cb4f7ff4830bbe42f /Doc | |
parent | 18cc344c0f98e6b2fe9d7181ae8f1aaa5bcca430 (diff) | |
download | cpython-ebbef6fef2e1c70aaa23ee27dcfc237545dee5d5.zip cpython-ebbef6fef2e1c70aaa23ee27dcfc237545dee5d5.tar.gz cpython-ebbef6fef2e1c70aaa23ee27dcfc237545dee5d5.tar.bz2 |
Issue 9877: expose sysconfig.get_makefile_filename() in the public API.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/sysconfig.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/sysconfig.rst b/Doc/library/sysconfig.rst index f3194f8..773480b 100644 --- a/Doc/library/sysconfig.rst +++ b/Doc/library/sysconfig.rst @@ -217,6 +217,10 @@ Other functions Return the path of :file:`pyconfig.h`. +.. function:: get_makefile_filename() + + Return the path of :file:`Makefile`. + Using :mod:`sysconfig` as a script ---------------------------------- |