#26250: merge with 3.5.

This commit is contained in:
Ezio Melotti 2016-03-18 20:11:30 +02:00
commit 6840632ef2
2 changed files with 13 additions and 0 deletions

View File

@ -627,6 +627,18 @@ Cursor Objects
It is set for ``SELECT`` statements without any matching rows as well.
.. attribute:: connection
This read-only attribute provides the SQLite database :class:`Connection`
used by the :class:`Cursor` object. A :class:`Cursor` object created by
calling :meth:`con.cursor() <Connection.cursor>` will have a
:attr:`connection` attribute that refers to *con*::
>>> con = sqlite3.connect(":memory:")
>>> cur = con.cursor()
>>> cur.connection == con
True
.. _sqlite3-row-objects:
Row Objects

View File

@ -1178,6 +1178,7 @@ Burton Radons
Abhilash Raj
Shorya Raj
Jeff Ramnani
Varpu Rantala
Brodie Rao
Senko Rasic
Antti Rasinen