summaryrefslogtreecommitdiff
path: root/tests/dbapi20.py
Commit message (Collapse)AuthorAgeFilesLines
* Use relative imports throughout testsJon Dufresne2017-12-101-3/+3
| | | | | | | | | | | | | | The tests relied on Python2 relative import semantics. Python3 changed import semantics to always search sys.path by default. To import using a relative path it must have a leading dot. Forward compatible with newer Pythons. Works towards the goal of moving tests outside of the installed package. For more information, see PEP-328: https://www.python.org/dev/peps/pep-0328/
* Trim trailing whitespace from all files throughout projectJon Dufresne2017-12-011-17/+16
| | | | | | Many editors automatically trim whitespace on save. By trimming all files in one go, makes future diffs cleaner without extraneous whitespace changes.
* Replace comparison with None with equality operatorHugo2017-11-281-1/+1
|
* Fix several typosHyunjun Kim2015-05-031-2/+2
|
* Fix multiple misspellingsPiotr Kasprzyk2013-04-261-4/+4
|
* Dropped test about close() on closed connection raising an exceptionDaniele Varrazzo2012-03-041-1/+3
| | | | | | This seems unnecessary and has caused problems to a few. The DB-SIG seems agreeing on the change: http://mail.python.org/pipermail/db-sig/2011-October/005811.html
* DBAPI compatibility test updated to 1.12.Daniele Varrazzo2010-09-231-12/+32
| | | | Nothing major: Python 3.0 compatibility fixes.
* Added DBAPI 2.0 conformance tests in tests/.Federico Di Gregorio2006-02-111-0/+850