Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
6840632e
Commit
6840632e
authored
Mar 18, 2016
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Plain Diff
#26250: merge with 3.5.
parents
32cba67b
62564dbb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
Doc/library/sqlite3.rst
Doc/library/sqlite3.rst
+12
-0
Misc/ACKS
Misc/ACKS
+1
-0
No files found.
Doc/library/sqlite3.rst
View file @
6840632e
...
...
@@ -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
...
...
Misc/ACKS
View file @
6840632e
...
...
@@ -1178,6 +1178,7 @@ Burton Radons
Abhilash Raj
Shorya Raj
Jeff Ramnani
Varpu Rantala
Brodie Rao
Senko Rasic
Antti Rasinen
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment