summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Test PostgreSQL 11 on Travistest-pg-11Daniele Varrazzo2018-10-232-5/+20
|
* errorcodes map update to PostgreSQL 11Daniele Varrazzo2018-10-144-3/+5
|
* Merge branch 'fix-790' into maint_2_7Daniele Varrazzo2018-10-123-0/+12
|\
| * Fixed refcount in connection's readonly and deferrable gettersDaniele Varrazzo2018-10-123-0/+12
|/ | | | Close #790
* Fixed farto in error checking assigning description valuesDaniele Varrazzo2018-10-111-1/+1
| | | | Unnoticed since Feb 2011 \o/
* Merge branch 'fix-copy-async-hangs' into maint_2_7Daniele Varrazzo2018-10-104-5/+23
|\
| * Fixed infinite loop in pq_get_last_result after COPYDaniele Varrazzo2018-10-104-5/+23
|/ | | | | | | There will be an error downstream but we have to get out of this function first. Close #781
* Merge branch 'fix-bsd' into maint_2_7Daniele Varrazzo2018-09-072-2/+2
|\
| * Mention FreeBSD build fixed in news fileDaniele Varrazzo2018-09-071-0/+1
| |
| * Remove obsolete and incorrect FreeBSD version conditionDmitry Marakasov2018-09-071-2/+1
|/ | | | The FreeBSD-related condition which enables custom round() implementation is incorrect: one must include <sys/param.h> to get __FreeBSD_version value, and since it's not included here, the check succeeds while it shouldn't. Before it worked somehow, but since python 3.7 it results in conflicting declarations of round(). The condition is also no longer needed since FreeBSD 5.3 is unsupported for 12 years.
* Improve doc for extras.wait_selectDaniel Hahler2018-09-051-2/+2
|
* Fix typo in install.rstAndrew King2018-09-051-1/+1
|
* Update intersphinx URLs to point to Python 3 docsJon Dufresne2018-09-051-3/+2
| | | | | | Python 3 docs are more up to date and reflect the future of Python. Removed unused py3 marker.
* Merge branch 'fix-746' into maint_2_7Daniele Varrazzo2018-07-244-17/+65
|\
| * Fixed compile error on windowsDaniele Varrazzo2018-07-241-10/+9
| | | | | | | | | | | | | | Because const int + 1 is not const, right??? Also fixed other occurrences of magic numbers and failed DRY around PyOS_snprintf() calls.
| * Bump tests for selective closure of named cursor to pg 8.2Daniele Varrazzo2018-07-242-2/+2
| | | | | | | | | | Previous versions don't support the features as they don't have the pg_cursors view. But they are too old to care.
| * Close named cursor if exist, even if we didn't run executeDaniele Varrazzo2018-07-213-9/+58
|/ | | | Close #746
* Bump to next dev version numberDaniele Varrazzo2018-07-211-1/+1
|
* Bump to version 2.7.52_7_5Daniele Varrazzo2018-05-271-1/+1
|
* Note the upgrade in wheel dependencies in NEWS fileDaniele Varrazzo2018-05-232-2/+3
|
* Added note adivising against depending on the -wheels packageDaniele Varrazzo2018-05-231-4/+13
|
* Dropped license paragraph applying to removed filesDaniele Varrazzo2018-05-231-7/+2
|
* Update all pypi.python.org URLs to pypi.orgJon Dufresne2018-05-205-6/+6
| | | | | | | | For details on the new PyPI, see the blog post: https://pythoninsider.blogspot.ca/2018/04/new-pypi-launched-legacy-pypi-shutting.html (with my addition after cherry-picking from master to maint_2_7)
* Added license to the docsDaniele Varrazzo2018-05-206-9/+27
| | | | Includes other docs improvements, such as the ones proposed in #711.
* Merge branch 'fix-716' into maint_2_7Daniele Varrazzo2018-05-204-7/+24
|\
| * Don't raise an exception closing an unused named cursorfix-716-27Daniele Varrazzo2018-05-204-7/+24
| | | | | | | | Close #716
* | Merge branch 'fix-707' into maint_2_7Daniele Varrazzo2018-05-202-0/+13
|\ \ | |/ |/|
| * Set minimal postgres version for intervalstyle testfix-707-27Daniele Varrazzo2018-05-201-0/+1
| |
| * Raise NotSupportedError fetching iso_8601 intervalsDaniele Varrazzo2018-05-202-0/+12
|/ | | | | | Previously it would have failed parsing and resulted in ValueError Close #707
* Fix use of "async" in test_cursor.pyJon Dufresne2018-05-181-1/+1
| | | | | "async" will be a keyword starting with Python 3.7. On Python 3.6, use of "async" causes a deprecation warning. Use the alias "async_" instead.
* Merge remote-tracking branch 'nested-array-nulls' into maint_2_7Daniele Varrazzo2018-05-184-41/+106
|\
| * Hstore test fixed after adapting arrays dropped space after commasDaniele Varrazzo2018-05-141-2/+2
| |
| * Fixed adaptation of arrays of arrays of nullsDaniele Varrazzo2018-05-143-39/+104
| | | | | | | | Close #325, close #706.
* | Merge remote-tracking branch 'fix-211' into maint_2_7Daniele Varrazzo2018-05-184-12/+26
|\ \ | |/ |/|
| * Skipped test on db version not supporting unicode identifiersDaniele Varrazzo2018-05-141-0/+1
| |
| * Test databases from newest to oldestDaniele Varrazzo2018-05-141-8/+8
| | | | | | | | | | This way we can spot when a feature was not supported yet by the first test failing.
| * Allow non-ascii chars in namedtuple fieldsDaniele Varrazzo2018-05-133-4/+17
|/ | | | | | | They can be valid chars in Python 3. Or maybe not? In which case Python will throw an exception, but that's fine. Fix regression introduced fixing #211
* Command to upload docs on pythonhosted dropped altogetherDaniele Varrazzo2018-02-251-2/+0
|
* Intersphinx urls to generate Python links updatedDaniele Varrazzo2018-02-251-2/+2
| | | | Previous urls warn about a redirect, so they are probably to go.
* Merge branch 'fix-679' into maint_2_7Daniele Varrazzo2018-02-213-2/+17
|\
| * Allow strings subclasses in ensure_bytesDaniele Varrazzo2018-02-203-2/+17
|/ | | | Fix #679
* Merge branch 'expand-version' into maint_2_7Daniele Varrazzo2018-02-193-7/+9
|\
| * Report MSYS2 build probably fixedDaniele Varrazzo2018-02-191-1/+2
| |
| * Avoid quoting the string in the psycopg version macroDaniele Varrazzo2018-02-192-6/+7
|/ | | | | | | Use a macro trick to add the quotes. This seems more portable than passing the quotes to the command line (see #658). https://gcc.gnu.org/onlinedocs/cpp/Stringizing.html
* Merge branch 'fix-solaris-11' into maint_2_7Daniele Varrazzo2018-02-193-1/+14
|\
| * Added Solaris 11 fix to news fileDaniele Varrazzo2018-02-191-0/+7
| |
| * Fixed building on SmartOSMike Gerdts2018-02-192-1/+7
|/ | | | | timeradd is missing on Solaris 10, but is present as a macro in <sys/time.h> on SmartOS, illumos, and likely Solaris 11.
* Fixed pip invocation example to skip binary packagesDaniele Varrazzo2018-02-091-2/+2
| | | | Close #673
* Bump to next dev version numberDaniele Varrazzo2018-02-091-1/+1
|
* Version number bumped to 2.7.42_7_4Daniele Varrazzo2018-02-061-1/+1
|