[Python-checkins] r54456 - python/trunk/Doc/lib/libplatform.tex

neal.norwitz python-checkins at python.org
Tue Mar 20 06:07:31 CET 2007


Author: neal.norwitz
Date: Tue Mar 20 06:07:28 2007
New Revision: 54456

Modified:
   python/trunk/Doc/lib/libplatform.tex
Log:
Add some doc that was left out from some change to platform.py

Modified: python/trunk/Doc/lib/libplatform.tex
==============================================================================
--- python/trunk/Doc/lib/libplatform.tex	(original)
+++ python/trunk/Doc/lib/libplatform.tex	Tue Mar 20 06:07:28 2007
@@ -80,6 +80,22 @@
   Returns a string identifying the compiler used for compiling Python.
 \end{funcdesc}
 
+\begin{funcdesc}{python_branch}{}
+  Returns a string identifying the Python implementation SCM branch.
+  \versionadded{2.6}
+\end{funcdesc}
+
+\begin{funcdesc}{python_implementation}{}
+  Returns a string identifying the Python implementation.
+  Possible return values are: 'CPython', 'IronPython', 'Jython'
+  \versionadded{2.6}
+\end{funcdesc}
+
+\begin{funcdesc}{python_revision}{}
+  Returns a string identifying the Python implementation SCM revision.
+  \versionadded{2.6}
+\end{funcdesc}
+
 \begin{funcdesc}{python_version}{}
   Returns the Python version as string \code{'major.minor.patchlevel'}
 
@@ -205,6 +221,7 @@
   which defaults to the args given as parameters.
 \end{funcdesc}
 
+% Document linux_distribution()?
 
 \begin{funcdesc}{libc_ver}{executable=sys.executable, lib='',
                            version='', chunksize=2048}


More information about the Python-checkins mailing list