summaryrefslogtreecommitdiffstats
path: root/Doc/library/sys.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-09-01 13:51:09 (GMT)
committerGeorg Brandl <georg@python.org>2007-09-01 13:51:09 (GMT)
commit55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (patch)
treea0d5b7128c055d8c767652dc3948c3404be06396 /Doc/library/sys.rst
parent1617457cff847fed9fadb01f1acf6ba8bb621726 (diff)
downloadcpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.zip
cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.gz
cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.bz2
Get rid of the remaining versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r--Doc/library/sys.rst37
1 files changed, 2 insertions, 35 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index 5184c25..c2a0a6e 100644
--- a/Doc/library/sys.rst
+++ b/Doc/library/sys.rst
@@ -29,8 +29,6 @@ always available.
big-endian (most-significant byte first) platforms, and ``'little'`` on
little-endian (least-significant byte first) platforms.
- .. versionadded:: 2.0
-
.. data:: subversion
@@ -43,8 +41,6 @@ always available.
exported (or svnversion was not available), it is the revision of
``Include/patchlevel.h`` if the branch is a tag. Otherwise, it is ``None``.
- .. versionadded:: 2.5
-
.. data:: builtin_module_names
@@ -73,8 +69,6 @@ always available.
This function should be used for internal and specialized purposes only.
- .. versionadded:: 2.5
-
.. data:: dllhandle
@@ -194,16 +188,12 @@ always available.
Return the interpreter's "check interval"; see :func:`setcheckinterval`.
- .. versionadded:: 2.3
-
.. function:: getdefaultencoding()
Return the name of the current default string encoding used by the Unicode
implementation.
- .. versionadded:: 2.0
-
.. function:: getdlopenflags()
@@ -211,8 +201,6 @@ always available.
The flag constants are defined in the :mod:`dl` and :mod:`DLFCN` modules.
Availability: Unix.
- .. versionadded:: 2.2
-
.. function:: getfilesystemencoding()
@@ -232,8 +220,6 @@ always available.
the encoding that applications should use when they explicitly want to convert
Unicode strings to byte strings that are equivalent when used as file names.
- .. versionadded:: 2.3
-
.. function:: getrefcount(object)
@@ -285,8 +271,6 @@ always available.
Availability: Windows.
- .. versionadded:: 2.3
-
.. data:: hexversion
@@ -306,8 +290,6 @@ always available.
``version_info`` value may be used for a more human-friendly encoding of the
same information.
- .. versionadded:: 1.5.2
-
.. function:: intern(string)
@@ -319,10 +301,8 @@ always available.
names used in Python programs are automatically interned, and the dictionaries
used to hold module, class or instance attributes have interned keys.
- .. versionchanged:: 2.3
- Interned strings are not immortal (like they used to be in Python 2.2 and
- before); you must keep a reference to the return value of :func:`intern` around
- to benefit from it.
+ Interned strings are not immortal; you must keep a reference to the return
+ value of :func:`intern` around to benefit from it.
.. data:: last_type
@@ -381,9 +361,6 @@ always available.
A program is free to modify this list for its own purposes.
- .. versionchanged:: 2.3
- Unicode strings are no longer ignored.
-
.. data:: platform
@@ -441,8 +418,6 @@ always available.
.. % the \programopt{-S} option is passed to the interpreter, in which
.. % case this function will remain available.
- .. versionadded:: 2.0
-
.. function:: setdlopenflags(n)
@@ -456,8 +431,6 @@ always available.
:file:`/usr/include/dlfcn.h` using the :program:`h2py` script. Availability:
Unix.
- .. versionadded:: 2.2
-
.. function:: setprofile(profilefunc)
@@ -515,8 +488,6 @@ always available.
available only if Python was compiled with :option:`--with-tsc`. To understand
the output of this dump, read :file:`Python/ceval.c` in the Python sources.
- .. versionadded:: 2.4
-
.. data:: stdin
stdout
@@ -569,8 +540,6 @@ always available.
The C API version for this interpreter. Programmers may find this useful when
debugging version conflicts between Python and extension modules.
- .. versionadded:: 2.3
-
.. data:: version_info
@@ -580,8 +549,6 @@ always available.
``'final'``. The ``version_info`` value corresponding to the Python version 2.0
is ``(2, 0, 0, 'final', 0)``.
- .. versionadded:: 2.0
-
.. data:: warnoptions