[Python-checkins] r68286 - in python/branches/release30-maint/Doc: c-api/object.rst documenting/markup.rst extending/windows.rst library/http.cookies.rst library/sqlite3.rst library/stdtypes.rst library/test.rst library/warnings.rst
georg.brandl
python-checkins at python.org
Sun Jan 4 01:28:52 CET 2009
Author: georg.brandl
Date: Sun Jan 4 01:28:52 2009
New Revision: 68286
Log:
Remove 2.6 versionchanges.
Modified:
python/branches/release30-maint/Doc/c-api/object.rst
python/branches/release30-maint/Doc/documenting/markup.rst
python/branches/release30-maint/Doc/extending/windows.rst
python/branches/release30-maint/Doc/library/http.cookies.rst
python/branches/release30-maint/Doc/library/sqlite3.rst
python/branches/release30-maint/Doc/library/stdtypes.rst
python/branches/release30-maint/Doc/library/test.rst
python/branches/release30-maint/Doc/library/warnings.rst
Modified: python/branches/release30-maint/Doc/c-api/object.rst
==============================================================================
--- python/branches/release30-maint/Doc/c-api/object.rst (original)
+++ python/branches/release30-maint/Doc/c-api/object.rst Sun Jan 4 01:28:52 2009
@@ -262,8 +262,6 @@
allowing a type to explicitly indicate to the interpreter that it is not
hashable.
- .. versionadded:: 2.6
-
.. cfunction:: int PyObject_IsTrue(PyObject *o)
Modified: python/branches/release30-maint/Doc/documenting/markup.rst
==============================================================================
--- python/branches/release30-maint/Doc/documenting/markup.rst (original)
+++ python/branches/release30-maint/Doc/documenting/markup.rst Sun Jan 4 01:28:52 2009
@@ -598,7 +598,7 @@
Example::
- .. versionadded:: 2.5
+ .. versionadded:: 3.1
The *spam* parameter.
Note that there must be no blank line between the directive head and the
Modified: python/branches/release30-maint/Doc/extending/windows.rst
==============================================================================
--- python/branches/release30-maint/Doc/extending/windows.rst (original)
+++ python/branches/release30-maint/Doc/extending/windows.rst Sun Jan 4 01:28:52 2009
@@ -107,10 +107,6 @@
to avoid confusion with a system library :file:`spam.dll` to which your module
could be a Python interface.
- .. versionchanged:: 2.5
- Previously, file names like :file:`spam.dll` (in release mode) or
- :file:`spam_d.dll` (in debug mode) were also recognized.
-
Now your options are:
#. Copy :file:`example.sln` and :file:`example.vcproj`, rename them to
Modified: python/branches/release30-maint/Doc/library/http.cookies.rst
==============================================================================
--- python/branches/release30-maint/Doc/library/http.cookies.rst (original)
+++ python/branches/release30-maint/Doc/library/http.cookies.rst Sun Jan 4 01:28:52 2009
@@ -131,9 +131,6 @@
The keys are case-insensitive.
- .. versionadded:: 2.6
- The :attr:`httponly` attribute was added.
-
.. attribute:: Morsel.value
Modified: python/branches/release30-maint/Doc/library/sqlite3.rst
==============================================================================
--- python/branches/release30-maint/Doc/library/sqlite3.rst (original)
+++ python/branches/release30-maint/Doc/library/sqlite3.rst Sun Jan 4 01:28:52 2009
@@ -562,16 +562,11 @@
If two :class:`Row` objects have exactly the same columns and their
members are equal, they compare equal.
- .. versionchanged:: 2.6
- Added iteration and equality (hashability).
-
.. method:: keys
This method returns a tuple of column names. Immediately after a query,
it is the first member of each tuple in :attr:`Cursor.description`.
- .. versionadded:: 2.6
-
Let's assume we initialize a table as in the example given above::
conn = sqlite3.connect(":memory:")
Modified: python/branches/release30-maint/Doc/library/stdtypes.rst
==============================================================================
--- python/branches/release30-maint/Doc/library/stdtypes.rst (original)
+++ python/branches/release30-maint/Doc/library/stdtypes.rst Sun Jan 4 01:28:52 2009
@@ -431,8 +431,6 @@
:exc:`OverflowError` on infinities and a :exc:`ValueError` on
NaNs.
- .. versionadded:: 2.6
-
Two methods support conversion to
and from hexadecimal strings. Since Python's floats are stored
internally as binary numbers, converting a float to or from a
Modified: python/branches/release30-maint/Doc/library/test.rst
==============================================================================
--- python/branches/release30-maint/Doc/library/test.rst (original)
+++ python/branches/release30-maint/Doc/library/test.rst Sun Jan 4 01:28:52 2009
@@ -352,6 +352,3 @@
Class used to record warnings for unit tests. See documentation of
:func:`check_warnings` above for more details.
-
- .. versionadded:: 2.6
-
Modified: python/branches/release30-maint/Doc/library/warnings.rst
==============================================================================
--- python/branches/release30-maint/Doc/library/warnings.rst (original)
+++ python/branches/release30-maint/Doc/library/warnings.rst Sun Jan 4 01:28:52 2009
@@ -335,8 +335,3 @@
module returned when you import :mod:`warnings` whose filter will be
protected. This argument exists primarily for testing the :mod:`warnings`
module itself.
-
- .. versionchanged:: 3.0
-
- Constructor arguments turned into keyword-only arguments.
-
More information about the Python-checkins
mailing list