Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed pip invocation example to skip binary packages | Daniele Varrazzo | 2018-02-09 | 1 | -2/+2 |
| | | | | Close #673 | ||||
* | Document the psycopg2-binary package | Daniele Varrazzo | 2018-01-29 | 1 | -98/+100 |
| | |||||
* | Dropped warning about unsafe cursor names | Daniele Varrazzo | 2018-01-25 | 1 | -5/+0 |
| | | | | It was long made secure | ||||
* | 'key' docs in getconn() improved | Daniele Varrazzo | 2018-01-11 | 1 | -1/+6 |
| | | | | Fix #569. | ||||
* | Fixed stitch_text on Python 2 | Daniele Varrazzo | 2018-01-10 | 1 | -4/+6 |
| | |||||
* | Avoid installing tests to site-packages | Jon Dufresne | 2017-12-10 | 1 | -2/+2 |
| | | | | | | | | For library end users, there is no need to install tests alongside the package itself. This keeps the tests available for development without adding extra packages to user's site-packages directory. Reduces the size of the installed package. Avoids accidental execution of test code by an installed package. | ||||
* | Use print() function instead of print statement throughout project | Jon Dufresne | 2017-12-10 | 1 | -1/+1 |
| | | | | Forward compatible with newer Pythons. | ||||
* | Drop long deprecated function register_tstz_w_secs() | Jon Dufresne | 2017-12-10 | 2 | -16/+1 |
| | | | | | | | | | | Deprecated in commit b263fbf274f9085a1bddca018ed8a50d37023fc7 on 2010-01-13. The deprecation warning was first released in version 2.2.2. The function used to register an alternate type caster for TIMESTAMP WITH TIME ZONE to deal with historical time zones with seconds in the UTC offset. These are now correctly handled by the default type caster, so currently the function doesn't do anything. | ||||
* | Merge branch 'master' into ws | Daniele Varrazzo | 2017-12-02 | 1 | -4/+1 |
|\ | |||||
| * | Use builtin function next() throughout project | Jon Dufresne | 2017-12-01 | 1 | -4/+1 |
| | | | | | | | | | | | | | | Available since Python 2.6. Use of .next() is deprecated and not supported in Python 3. Forward compatible with modern Python. https://docs.python.org/2/library/functions.html#next | ||||
* | | Trim trailing whitespace from all files throughout project | Jon Dufresne | 2017-12-01 | 16 | -204/+195 |
|/ | | | | | | Many editors automatically trim whitespace on save. By trimming all files in one go, makes future diffs cleaner without extraneous whitespace changes. | ||||
* | Documentation tweaked to omit Python 2.6 distinctions | Daniele Varrazzo | 2017-11-28 | 1 | -8/+6 |
| | |||||
* | Drop support for EOL Python 3.0-3.3 | Hugo | 2017-11-28 | 1 | -1/+1 |
| | |||||
* | Update to Exception as e, print() | Hugo | 2017-11-28 | 1 | -1/+1 |
| | |||||
* | Drop support for EOL Python 2.6 | Hugo | 2017-11-28 | 1 | -1/+1 |
| | |||||
* | Update documentation to reflect JSON import behavior | Jon Dufresne | 2017-11-28 | 1 | -6/+2 |
| | | | | | | | | The docs don't need to describe what will happen on Python versions before 2.6 as they are unsupported by psycopg2. Should have been included in commit d58844e5483483240f97537e9a77b4e79cea2ab3, but was missed. | ||||
* | Remove workarounds for namedtuple on Python <= 2.5 | Jon Dufresne | 2017-11-26 | 1 | -14/+0 |
| | | | | | | namedtuple is available on all Python versions supported by psycopg2. It was first introduced in Python 2.6. Can remove all workarounds and special documentation. | ||||
* | Added PostgreSQL 10 in the list of supported servers | Daniele Varrazzo | 2017-11-06 | 1 | -1/+1 |
| | |||||
* | Further docs cleanup | Daniele Varrazzo | 2017-11-06 | 5 | -20/+40 |
| | | | | | | Recent Sphinx versions seem overly aggressive in autodetecting python, or I just didn't notice the errors, so be explicit in what language to use with code examples. | ||||
* | Parameters passing docs improved | Daniele Varrazzo | 2017-11-06 | 1 | -18/+35 |
| | | | | | | | | | | | | | Every point has an example and all the example show wrong/correct. Nice rhythm. Among the improvements, added point saying explicitly "thou shall not quote placeholders". Quoted placeholders will just fail except in the most contrived cases (a statement raising an exception with all the strings except with the attack ones...), and an example in the following section explicitly notes "no quotes", but apparenty someone still thinks this is not documented enough? (see issue #611) so let's just write it plain and clear into the list of commandments. | ||||
* | Dropped suggestion for --no-binary :all: to skip wheels | Daniele Varrazzo | 2017-10-27 | 1 | -5/+22 |
| | | | | | | :all: applies to the entire file. --no-binary psycopg2 is the solution. See issue #543 | ||||
* | Parse PG 10 error codes from final version | Daniele Varrazzo | 2017-10-19 | 1 | -1/+1 |
| | |||||
* | Dropped doc building warning | Daniele Varrazzo | 2017-10-18 | 1 | -1/+1 |
| | | | | doctests have sure completely rotten however. | ||||
* | Sphinx version do build docs updated to 1.6 | Daniele Varrazzo | 2017-10-18 | 1 | -2/+2 |
| | |||||
* | Make dbapi_extension.py compatible with Sphinx 1.6 | Dmitry Shachnev | 2017-10-12 | 1 | -7/+6 |
| | | | | | | In Sphinx commit 1a821b89e9952fc2, the deprecated make_admonition() function was removed. This commit updates the code to use the modern API instead. | ||||
* | Disable uploading docs on pythonhosted | Daniele Varrazzo | 2017-08-23 | 2 | -167/+1 |
| | | | | | | | The service is deprecated in favour of RTD. There is also no more way to upload redirects there, so #581 cannot be fixed. Official docs are on http://initd.org/psycopg/docs/ | ||||
* | Fixed typo (found on stackoverflow... gh) | Daniele Varrazzo | 2017-07-27 | 1 | -1/+1 |
| | |||||
* | Accept Composable in start_replication_expert() | Daniele Varrazzo | 2017-06-17 | 1 | -2/+7 |
| | | | | Close #554 | ||||
* | Document that executemany() is not logged with LoggingConnection | Sebastian Bank | 2017-06-15 | 1 | -0/+5 |
| | |||||
* | Document incompatibility between wheel package and ssl module | Daniele Varrazzo | 2017-06-15 | 1 | -3/+12 |
| | | | | Close #543. | ||||
* | typo | 山楂片 | 2017-06-12 | 1 | -1/+1 |
| | | | s/fromat/format/g | ||||
* | Updated docs about versions supported in errcodes | Daniele Varrazzo | 2017-06-05 | 1 | -1/+1 |
| | |||||
* | Added doc link to replication commands | Daniele Varrazzo | 2017-05-10 | 1 | -2/+5 |
| | |||||
* | Expose *DATETIMETZ* objects in the extensions module | Daniele Varrazzo | 2017-03-22 | 1 | -0/+6 |
| | |||||
* | Dropped info that the features requires libpq >= 9.0 | Daniele Varrazzo | 2017-03-20 | 1 | -2/+0 |
| | | | | | | We are currently requiring libpq 9.1 at least, and the feature was released in 2.7, which could have never been compiled with previos libpq versions. | ||||
* | Merge branch 'fix-528' | Daniele Varrazzo | 2017-03-16 | 1 | -0/+3 |
|\ | |||||
| * | Obscure the password on url dsn too | Daniele Varrazzo | 2017-03-16 | 1 | -0/+3 |
| | | | | | | | | | | | | Note that we don't leak anymore the password length. Fix #528 | ||||
* | | Added docs about the usability of sql objects with copy_expert()sql-copy | Daniele Varrazzo | 2017-03-16 | 2 | -1/+9 |
|/ | | | | See issue #529. | ||||
* | Improved notes to release psycopg packages | Daniele Varrazzo | 2017-03-13 | 1 | -15/+45 |
| | |||||
* | Less stuff in the readme, more in the docs | Daniele Varrazzo | 2017-03-13 | 1 | -0/+7 |
| | |||||
* | Report ticket 518 fixed | Daniele Varrazzo | 2017-03-11 | 1 | -8/+11 |
| | | | | | The fix is actually implemented in the openssl1 branch of https://github.com/psycopg/psycopg2-wheels | ||||
* | correct minor grammatical issue with deprecation warning | Jon Nelson | 2017-03-03 | 1 | -1/+1 |
| | |||||
* | Added install section to specify how to skip wheels | Daniele Varrazzo | 2017-03-03 | 1 | -7/+39 |
| | |||||
* | Added docs about making a release | Daniele Varrazzo | 2017-03-01 | 1 | -0/+74 |
| | | | | | | Drop previous script which didn't include the CI-generated packages. [skip ci] | ||||
* | Fixed doc typo | Daniele Varrazzo | 2017-02-28 | 1 | -1/+1 |
| | | | | Close #515 | ||||
* | Dropped reference to "isolation level autocommit" in docs | Daniele Varrazzo | 2017-02-24 | 1 | -2/+2 |
| | |||||
* | Document installation from wheel packages | Daniele Varrazzo | 2017-02-16 | 1 | -145/+77 |
| | |||||
* | Added readonly and deferrable attributes | Daniele Varrazzo | 2017-02-16 | 1 | -6/+29 |
| | |||||
* | Revert pre-2.7b1 behaviour of silent rollback on conn.set_isolation_level() | Daniele Varrazzo | 2017-02-16 | 1 | -8/+3 |
| | | | | Legacy method is legacy. | ||||
* | connection.isolation_level is now writable | Daniele Varrazzo | 2017-02-16 | 1 | -16/+22 |
| |