summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Make sure to free the connection's pgres on deletefix-856Daniele Varrazzo2019-03-171-0/+1
* Added pq_get_result_async() replaced pg_get_last_result()Daniele Varrazzo2019-03-179-69/+167
* Retrieving the async cursor moved out of conn_poll() bodyDaniele Varrazzo2019-03-161-18/+39
* Simplified interactions between asyc functionsDaniele Varrazzo2019-03-161-5/+14
* Dropped locking version of pq_is_busy()Daniele Varrazzo2019-03-163-55/+4
* Dropped no_begin handling in async executeDaniele Varrazzo2019-03-161-13/+2
* Dropped debug info for microprotocols/adapters initializationDaniele Varrazzo2019-03-169-33/+2
* Shorter timeout in the async tests selectDaniele Varrazzo2019-03-161-2/+2
* Merge branch 'version-check-cleanup'Daniele Varrazzo2019-03-1625-141/+119
|\
| * Py2/3 compatibility macro definitions rationalizedDaniele Varrazzo2019-03-162-36/+32
| * Fixed check for type == int on Py2Daniele Varrazzo2019-03-161-1/+1
| * Added PY_2, PY_3 macros and used uniformlyDaniele Varrazzo2019-03-1613-35/+38
| * Dropped conditional compiling dealing with unsupported versionsDaniele Varrazzo2019-03-162-12/+1
| * Use PY2, PY3 for conditional code instead of sys.version_infoDaniele Varrazzo2019-03-1610-61/+47
| * Added PY2, PY3 to compat moduleDaniele Varrazzo2019-03-161-0/+4
|/
* Merge branch 'fix-imports'Daniele Varrazzo2019-03-1613-101/+54
|\
| * Use errors module to catch a specific postgres errorDaniele Varrazzo2019-03-161-6/+3
| * Other import moved to top level in testsDaniele Varrazzo2019-03-1612-77/+44
| * Dropped repeated conditional import of reload in testDaniele Varrazzo2019-03-161-8/+0
| * TextIOBase moved to tests compat importsDaniele Varrazzo2019-03-162-11/+8
|/
* Move imports to the top of the module across testsJon Dufresne2019-03-1615-171/+48
* Fix invalid exception handler: `except e:`Jon Dufresne2019-03-161-4/+0
* Removed support for mxDateTime as the default date and time adapterJon Dufresne2019-03-1610-209/+4
* Remove unnecessary `except ImportError` for Python datetime typesJon Dufresne2019-03-161-7/+4
* Use unittest 'skip' feature to skip mxDateTimeTestsJon Dufresne2019-03-131-13/+4
* Remove unused use_pydatetime from setup.pyJon Dufresne2019-03-131-1/+0
* Remove unused use_pg_dll from setup.pyJon Dufresne2019-03-131-1/+0
* Use True/False instead of 1/0 to represent bool valuesJon Dufresne2019-03-132-17/+16
* Remove unused variableJon Dufresne2019-03-131-1/+0
* Convert `while 1:` statements to `while True:`Jon Dufresne2019-03-133-9/+9
* Remove unused imports from tests/test_ipaddress.pyJon Dufresne2019-03-131-3/+0
* Advertise openssl 1.0.2r and libpq 11.2 in wheelsDaniele Varrazzo2019-03-131-0/+1
* Bumped to version 2.8Daniele Varrazzo2019-03-051-1/+1
* Better link from docs to "json and jsonb" data typesDaniele Varrazzo2019-03-051-6/+7
* Fixed building with Python 3.8Daniele Varrazzo2019-03-051-0/+5
* Dropped outdated setup.py commentDaniele Varrazzo2019-02-261-3/+0
* Add project_urls to setup.py, with links to source and documentationGrey Baker2019-02-261-1/+5
* Fix typoDavid Fischer2019-02-261-1/+1
* Merge branch 'info-dsn-params'Daniele Varrazzo2019-02-174-23/+84
|\
| * Added ConnectionInfo.dsn_parameters attributeinfo-dsn-paramsDaniele Varrazzo2019-02-174-23/+84
|/
* Don't use versions such as 2.8.0 in docsDaniele Varrazzo2019-02-173-11/+11
* Copyright year updatedDaniele Varrazzo2019-02-17118-120/+120
* Allow building docs with Python 3Daniele Varrazzo2019-02-171-3/+5
* Fixed title level of sqlsate errors table in docsDaniele Varrazzo2019-02-171-1/+1
* Dropped text docs generationDaniele Varrazzo2019-02-175-83/+5
* Added table of sqlstate exceptions in the docsDaniele Varrazzo2019-02-175-11/+83
* Merge branch 'libpq-ptrs'Daniele Varrazzo2019-02-178-4/+130
|\
| * Added docs about pgconn_ptr, pgresult_ptrlibpq-ptrsDaniele Varrazzo2019-02-163-2/+38
| * Skip tests involving ctypes on WindowsDaniele Varrazzo2019-02-161-0/+3
| * Added connection.pgconn_ptr and cursor.pgresult_ptrDaniele Varrazzo2019-02-165-2/+89