summaryrefslogtreecommitdiff
path: root/doc/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into errors-moduleerrors-moduleDaniele Varrazzo2018-10-1513-135/+264
|\
| * errorcodes map update to PostgreSQL 11Daniele Varrazzo2018-10-141-1/+1
| |
| * Added docs for the Column objectDaniele Varrazzo2018-10-112-35/+112
| |
| * Another url changed to httpsDaniele Varrazzo2018-10-101-1/+1
| | | | | | | | Added after this MR.
| * Merge branch 'master' into httpsDaniele Varrazzo2018-10-104-1/+54
| |\
| | * Merge branch 'conn-get-host'Daniele Varrazzo2018-10-101-0/+18
| | |\
| | | * Small tweaks to connection.host docsDaniele Varrazzo2018-10-101-2/+2
| | | |
| | | * Added connection.hostMarco De Paoli2018-10-061-0/+18
| | | | | | | | | | | | | | | | Return the server host name of the current connect.
| | * | Merge remote-tracking branch 'origin/diag-schema-name-nonloc'Daniele Varrazzo2018-10-101-0/+4
| | |\ \
| | | * | Added Diagnostics.severity_nonlocalized attributediag-schema-name-nonlocDaniele Varrazzo2018-10-041-0/+4
| | | |/ | | | | | | | | | | | | Close #783.
| | * | Fix RST markupAlan D Moore2018-10-081-1/+1
| | | |
| | * | Added note about backslashes and LIKEAlan D Moore2018-10-081-0/+21
| | |/ | | | | | | | | | | | | Added note about the use of LIKE with strings containing backslashes. Addresses concern in issue #785.
| | * sql.Identifier can wrap a sequence of strings to represent qualified namesidentifier-sequenceDaniele Varrazzo2018-10-041-1/+11
| | | | | | | | | | | | Close #732.
| * | Prefer https:// URLs when availableJon Dufresne2018-09-2212-97/+97
| |/
| * 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.
| * Add testing and document support for Python 3.7Jon Dufresne2018-07-121-1/+1
| | | | | | | | | | | | Python 3.7 was released on June 27, 2018. https://docs.python.org/3/whatsnew/3.7.html
* | Added errors.lookup() functionDaniele Varrazzo2018-10-151-0/+2
| |
* | Added documentation for the errors moduleDaniele Varrazzo2018-10-154-9/+74
|/
* Added note adivising against depending on the -wheels packageDaniele Varrazzo2018-05-231-4/+13
|
* encrypt_password docs moved to extension module and updatedDaniele Varrazzo2018-05-202-27/+32
|
* Merge branch 'master' into encrypt-passDaniele Varrazzo2018-05-206-7/+25
|\
| * Update all pypi.python.org URLs to pypi.orgJon Dufresne2018-05-202-2/+2
| | | | | | | | | | | | For details on the new PyPI, see the blog post: https://pythoninsider.blogspot.ca/2018/04/new-pypi-launched-legacy-pypi-shutting.html
| * Intersphinx urls to generate Python links updatedDaniele Varrazzo2018-05-201-2/+2
| | | | | | | | Previous urls warn about a redirect, so they are probably to go.
| * Added license to the docsDaniele Varrazzo2018-05-204-3/+21
| | | | | | | | Includes other docs improvements, such as the ones proposed in #711.
* | Merge branch 'master' into masterAshesh Vashi2018-05-0816-230/+240
|\ \ | |/
| * Fixed pip invocation example to skip binary packagesDaniele Varrazzo2018-02-091-2/+2
| | | | | | | | Close #673
| * Document the psycopg2-binary packageDaniele Varrazzo2018-01-291-98/+100
| |
| * Dropped warning about unsafe cursor namesDaniele Varrazzo2018-01-251-5/+0
| | | | | | | | It was long made secure
| * 'key' docs in getconn() improvedDaniele Varrazzo2018-01-111-1/+6
| | | | | | | | Fix #569.
| * Fixed stitch_text on Python 2Daniele Varrazzo2018-01-101-4/+6
| |
| * Avoid installing tests to site-packagesJon Dufresne2017-12-101-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 projectJon Dufresne2017-12-101-1/+1
| | | | | | | | Forward compatible with newer Pythons.
| * Drop long deprecated function register_tstz_w_secs()Jon Dufresne2017-12-102-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 wsDaniele Varrazzo2017-12-021-4/+1
| |\
| | * Use builtin function next() throughout projectJon Dufresne2017-12-011-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 projectJon Dufresne2017-12-0112-43/+34
| |/ | | | | | | | | | | 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 distinctionsDaniele Varrazzo2017-11-281-8/+6
| |
| * Drop support for EOL Python 3.0-3.3Hugo2017-11-281-1/+1
| |
| * Update to Exception as e, print()Hugo2017-11-281-1/+1
| |
| * Drop support for EOL Python 2.6Hugo2017-11-281-1/+1
| |
| * Update documentation to reflect JSON import behaviorJon Dufresne2017-11-281-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.5Jon Dufresne2017-11-261-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 serversDaniele Varrazzo2017-11-061-1/+1
| |
| * Further docs cleanupDaniele Varrazzo2017-11-065-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 improvedDaniele Varrazzo2017-11-061-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 wheelsDaniele Varrazzo2017-10-271-5/+22
| | | | | | | | | | | | :all: applies to the entire file. --no-binary psycopg2 is the solution. See issue #543
| * Parse PG 10 error codes from final versionDaniele Varrazzo2017-10-191-1/+1
| |
| * Dropped doc building warningDaniele Varrazzo2017-10-181-1/+1
| | | | | | | | doctests have sure completely rotten however.
| * Make dbapi_extension.py compatible with Sphinx 1.6Dmitry Shachnev2017-10-121-7/+6
| | | | | | | | | | | | In Sphinx commit 1a821b89e9952fc2, the deprecated make_admonition() function was removed. This commit updates the code to use the modern API instead.