This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: SQLite3 documentation changes
Type: Stage: resolved
Components: Documentation Versions: Python 3.2, Python 3.3, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, mikehoy, petri.lehtinen, python-dev, r.david.murray
Priority: normal Keywords: patch

Created on 2012-08-20 17:11 by mikehoy, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
sqlite3-docs-changes.diff mikehoy, 2012-08-20 17:11 review
sqlite3-docs-remove-print.diff mikehoy, 2012-08-20 17:56 review
Messages (5)
msg168681 - (view) Author: Mike Hoy (mikehoy) * Date: 2012-08-20 17:11
In Core-Mentorship we discussed this and decided on the following patch.
msg168683 - (view) Author: Petri Lehtinen (petri.lehtinen) * (Python committer) Date: 2012-08-20 17:46
+   print(c.fetchone())

I don't think this line should be added because it's not there after the first select.
msg168684 - (view) Author: Mike Hoy (mikehoy) * Date: 2012-08-20 17:56
Removed print function in this patch.
msg168686 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-08-20 18:17
New changeset 80b15cf2611e by R David Murray in branch '3.2':
#15742: clarify sqlite parameter substitution example.
http://hg.python.org/cpython/rev/80b15cf2611e

New changeset 2eafe04cb6ed by R David Murray in branch 'default':
Merge #15742: clarify sqlite parameter substitution example.
http://hg.python.org/cpython/rev/2eafe04cb6ed

New changeset 857c9e1fdd1e by R David Murray in branch '2.7':
#15742: clarify sqlite parameter substitution example.
http://hg.python.org/cpython/rev/857c9e1fdd1e
msg168687 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2012-08-20 18:21
Thanks, Mike.
History
Date User Action Args
2022-04-11 14:57:34adminsetgithub: 59947
2012-08-20 18:21:27r.david.murraysetstatus: open -> closed
versions: + Python 2.7, Python 3.2
messages: + msg168687

resolution: fixed
stage: resolved
2012-08-20 18:17:58python-devsetnosy: + python-dev
messages: + msg168686
2012-08-20 17:56:27mikehoysetfiles: + sqlite3-docs-remove-print.diff

messages: + msg168684
2012-08-20 17:46:42petri.lehtinensetnosy: + petri.lehtinen
messages: + msg168683
2012-08-20 17:11:52mikehoycreate