[issue6057] sqlite3 error classes should be documented

2016-08-24 Thread Emanuel Barry
Emanuel Barry added the comment: Typo: "an Warning" ;) -- nosy: +ebarry status: closed -> open ___ Python tracker ___ ___ Python-bugs-

[issue6057] sqlite3 error classes should be documented

2016-08-24 Thread Berker Peksag
Berker Peksag added the comment: Already fixed in 78c039440d6b, thanks! -- status: open -> closed ___ Python tracker ___ ___ Python-bu

[issue6057] sqlite3 error classes should be documented

2016-08-24 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Jaysinh and Stéphane! :) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue6057] sqlite3 error classes should be documented

2016-08-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1dbd1a9a6a9c by Berker Peksag in branch '3.5': Issue #6057: Document exceptions in sqlite3 module https://hg.python.org/cpython/rev/1dbd1a9a6a9c New changeset 6f8042107d76 by Berker Peksag in branch 'default': Issue #6057: Merge from 3.5 https://hg.

[issue6057] sqlite3 error classes should be documented

2016-08-24 Thread Berker Peksag
Changes by Berker Peksag : -- stage: commit review -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue6057] sqlite3 error classes should be documented

2016-08-10 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- stage: patch review -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue6057] sqlite3 error classes should be documented

2016-08-10 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- assignee: -> berker.peksag ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue6057] sqlite3 error classes should be documented

2016-08-10 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Fixed with your comments. -- Added file: http://bugs.python.org/file44069/issue6057-3.6-2.diff ___ Python tracker ___ __

[issue6057] sqlite3 error classes should be documented

2016-08-10 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch! +.. exception:: DatabaseError + +Exception raised for errors that are related to the database. It Indentation is not in line with other items: +.. exception:: DatabaseError + + Exception [...] In Cursor.execute() docume

[issue6057] sqlite3 error classes should be documented

2016-08-10 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- stage: patch review -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue6057] sqlite3 error classes should be documented

2016-08-10 Thread Jaysinh shukla
Jaysinh shukla added the comment: Dear Stéphane, I will be agreed with the way proposed by you. -- ___ Python tracker ___ ___ Pytho

[issue6057] sqlite3 error classes should be documented

2016-08-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Here is the patch with my comments. -- Added file: http://bugs.python.org/file44043/issue6057-3.6.diff ___ Python tracker ___ __

[issue6057] sqlite3 error classes should be documented

2016-08-07 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue6057] sqlite3 error classes should be documented

2016-08-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Jaysinh, I have reviewed your patch, but for me, this one should be have an order for the exception. * Warning * Error * DatabaseError * ProgrammingError * IntegrityError Thank you -- nosy: +matrixise _

[issue6057] sqlite3 error classes should be documented

2016-06-16 Thread Jaysinh shukla
Jaysinh shukla added the comment: Adding forgotten reference of ProgrammingError to last patch. Please review issue6057_python3_6_v2.diff Thanks! -- Added file: http://bugs.python.org/file43413/issue6057_python3_6_v2.diff ___ Python tracker

[issue6057] sqlite3 error classes should be documented

2016-06-16 Thread Jaysinh shukla
Jaysinh shukla added the comment: Submitting the patch for Python 3.6. -- keywords: +patch Added file: http://bugs.python.org/file43412/issue6057_python3_6.diff ___ Python tracker ___

[issue6057] sqlite3 error classes should be documented

2016-06-16 Thread Jaysinh shukla
Changes by Jaysinh shukla : -- nosy: +jaysinh.shukla ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue6057] sqlite3 error classes should be documented

2016-06-12 Thread Berker Peksag
Berker Peksag added the comment: Here is a list of exceptions that need to be documented: IntegrityError, Warning, Error, ProgrammingError and DatabaseError. -- nosy: +berker.peksag priority: low -> normal type: behavior -> enhancement versions: +Python 3.5, Python 3.6 -Python 3.2, Pyth

[issue6057] sqlite3 error classes should be documented

2015-05-11 Thread Radek Holý
Radek Holý added the comment: One reason why I would like to have it mentioned in the documentation is that the fact that it is not documented there causes "sqlite3.Error" to be missing in the "objects.inv" file generated by Sphinx so that enabling the "nitpicky" mode with "intersphinx" extens

[issue6057] sqlite3 error classes should be documented

2013-08-05 Thread timm
timm added the comment: I would find it useful to have the exception classes listed in the Python documentation rather than having to refer to two documents, but I don't have strong feelings on this. Given that nobody has fixed this for 4 years, should we just close the ticket? I'd be happy t

[issue6057] sqlite3 error classes should be documented

2013-01-29 Thread Mitchell Model
Mitchell Model added the comment: I still think the Exception class hierarchy should be described in the sqlite3 module documentation. Someone should decide one way or another and close this issue. -- ___ Python tracker

[issue6057] sqlite3 error classes should be documented

2011-10-28 Thread Florent Xicluna
Changes by Florent Xicluna : -- stage: -> needs patch versions: +Python 3.3 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list ma

[issue6057] sqlite3 error classes should be documented

2010-07-09 Thread Florent Xicluna
Changes by Florent Xicluna : -- assignee: ghaering -> keywords: +easy nosy: +flox type: -> behavior versions: -Python 2.6, Python 3.0 ___ Python tracker ___ ___

[issue6057] sqlite3 error classes should be documented

2009-05-26 Thread Gerhard Häring
Gerhard Häring added the comment: At the very start of the module's documentation it reads: """ pysqlite was written by Gerhard Häring and provides a SQL interface compliant with the DB-API 2.0 specification described by PEP 249. """ Where "PEP 249" is a link to the Database API 2.0 specificat

[issue6057] sqlite3 error classes should be documented

2009-05-21 Thread Mitchell Model
Mitchell Model added the comment: Thanks for the informatiion about the exception classes documented in the PEP. I didn't mean to suggest that the information wasn't available. (For that matter, I was able to extract it for my purposes by looking at the .c source.) I've been writing a book o

[issue6057] sqlite3 error classes should be documented

2009-05-20 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: georg.brandl -> ghaering nosy: +ghaering ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue6057] sqlite3 error classes should be documented

2009-05-18 Thread Mitchell Model
New submission from Mitchell Model : I can't find any documentation of the exception classes defined in the sqlite3 module. There are quite a few, and some inheritance. The examples in the sqlite3 module documentation have a few exception clauses, but the errors they catch are not explained. I w