diff options
author | Georg Brandl <georg@python.org> | 2009-12-19 17:35:49 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-12-19 17:35:49 (GMT) |
commit | 6d7f6f75fdfedcb9c3e4a98194448eac619e9f95 (patch) | |
tree | 08e3695ed9bb293cbaadbc5f7f7bb7b6e14364b7 /Doc | |
parent | 45f992a45e54330335417f1368f7fc7c920737c6 (diff) | |
download | cpython-6d7f6f75fdfedcb9c3e4a98194448eac619e9f95.zip cpython-6d7f6f75fdfedcb9c3e4a98194448eac619e9f95.tar.gz cpython-6d7f6f75fdfedcb9c3e4a98194448eac619e9f95.tar.bz2 |
Merged revisions 76883 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76883 | georg.brandl | 2009-12-19 18:34:32 +0100 (Sa, 19 Dez 2009) | 1 line
#7521: remove Py_GetBuildNumber(), which was removed in favor of Py_GetBuildInfo().
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/init.rst | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst index 152cb13..2e2aa64 100644 --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -283,13 +283,6 @@ Initialization, Finalization, and Threads modify its value. The value is available to Python code as :data:`sys.version`. -.. cfunction:: const char* Py_GetBuildNumber() - - Return a string representing the Subversion revision that this Python executable - was built from. This number is a string because it may contain a trailing 'M' - if Python was built from a mixed revision source tree. - - .. cfunction:: const char* Py_GetPlatform() .. index:: single: platform (in module sys) |