Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Merge pull request #647 from jdufresne/drop-unused-scripts | Daniele Varrazzo | 2017-12-10 | 4 | -161/+0 | |
|\ | | | | | Remove unused scripts maketypes.sh & buildtypes.py | |||||
| * | Remove unused scripts maketypes.sh & buildtypes.py | Jon Dufresne | 2017-12-10 | 4 | -161/+0 | |
|/ | | | | Refs #645 | |||||
* | Merge pull request #646 from jdufresne/drop-deprecated | Daniele Varrazzo | 2017-12-10 | 4 | -28/+2 | |
|\ | | | | | Drop long deprecated function register_tstz_w_secs() | |||||
| * | Drop long deprecated function register_tstz_w_secs() | Jon Dufresne | 2017-12-10 | 4 | -28/+2 | |
|/ | | | | | | | | | | 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 'goodbye-psycopg1' | Daniele Varrazzo | 2017-12-04 | 3 | -97/+1 | |
|\ | ||||||
| * | Dropped psycopg1 modulegoodbye-psycopg1 | Daniele Varrazzo | 2017-12-04 | 3 | -97/+1 | |
|/ | ||||||
* | Merge branch 'master' into ws | Daniele Varrazzo | 2017-12-02 | 29 | -144/+69 | |
|\ | ||||||
| * | Merge remote-tracking branch 'jdufresne/egg-info' | Daniele Varrazzo | 2017-12-02 | 1 | -0/+1 | |
| |\ | ||||||
| | * | Add *.egg-info directories to .gitignore | Jon Dufresne | 2017-12-01 | 1 | -0/+1 | |
| | | | ||||||
| * | | Merge remote-tracking branch 'jdufresne/import-unittest' | Daniele Varrazzo | 2017-12-02 | 22 | -22/+40 | |
| |\ \ | ||||||
| | * | | Always import the system unittest | Jon Dufresne | 2017-12-01 | 22 | -22/+40 | |
| | |/ | | | | | | | | | | | | | | | | | | | There is no need to import testutils.unittest instead of simply unittest. They are simple aliases. Use system unittest to be more regular, consistent as well as idiomatic with the wider Python community. | |||||
| * | | Merge remote-tracking branch 'jdufresne/leading0' | Daniele Varrazzo | 2017-12-02 | 1 | -1/+1 | |
| |\ \ | ||||||
| | * | | Drop leading 0's from numeric literals | Jon Dufresne | 2017-12-01 | 1 | -1/+1 | |
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Not compatible with Python3. Makes the code more forward compatible with modern Pythons. In Python2, it was an alternative syntax for octal. $ python3 >>> 01 File "<stdin>", line 1 01 ^ SyntaxError: invalid token | |||||
| * | | Merge remote-tracking branch 'jdufresne/next-func' | Daniele Varrazzo | 2017-12-02 | 6 | -20/+17 | |
| |\ \ | ||||||
| | * | | Use builtin function next() throughout project | Jon Dufresne | 2017-12-01 | 6 | -20/+17 | |
| | |/ | | | | | | | | | | | | | | | | | | | 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 | |||||
| * | | Merge remote-tracking branch 'jdufresne/more-json' | Daniele Varrazzo | 2017-12-02 | 1 | -56/+0 | |
| |\ \ | ||||||
| | * | | Remove test decorators for json module | Jon Dufresne | 2017-12-01 | 1 | -56/+0 | |
| | |/ | | | | | | | | | | | | | | | | | | | | | | The json module is available in all Python versions supported by psycopg2. No need to check for its presence when executing tests. Should have been included with d58844e5483483240f97537e9a77b4e79cea2ab3 but was missed. | |||||
| * | | Merge remote-tracking branch 'jdufresne/sorted' | Daniele Varrazzo | 2017-12-02 | 1 | -7/+0 | |
| |\ \ | ||||||
| | * | | Remove sorted() workaround; available on all supported Pythons | Jon Dufresne | 2017-12-01 | 1 | -7/+0 | |
| | |/ | | | | | | | | | | | | | | | | Introduced in Python 2.4 and the oldest supported Python is 2.7. https://docs.python.org/2/library/functions.html#sorted | |||||
| * | | Merge remote-tracking branch 'jdufresne/script-to-py3' | Daniele Varrazzo | 2017-12-02 | 5 | -38/+10 | |
| |\ \ | | |/ | |/| | ||||||
| | * | Remove unnecessary script_to_py3; make scripts compatible instead | Jon Dufresne | 2017-12-01 | 5 | -38/+10 | |
| |/ | | | | | | | Part of the work towards moving tests out of the installed package. | |||||
* | | Dropped .sln file | Daniele Varrazzo | 2017-12-02 | 1 | -43/+0 | |
| | | ||||||
* | | Trim trailing whitespace from all files throughout project | Jon Dufresne | 2017-12-01 | 52 | -324/+286 | |
|/ | | | | | | Many editors automatically trim whitespace on save. By trimming all files in one go, makes future diffs cleaner without extraneous whitespace changes. | |||||
* | Fixed NEWS file entries | Daniele Varrazzo | 2017-12-01 | 1 | -8/+4 | |
| | | | | | | - 2.6.3 has not been released (yet). Fixes for bug #420, bug #462 were relased in 2.7. - Added missing report for bug #489 fixed in 2.7. | |||||
* | Merge branch 'bug-633' | Daniele Varrazzo | 2017-11-29 | 3 | -2/+19 | |
|\ | ||||||
| * | Collect rowcount in executemany even when discarding results | Daniele Varrazzo | 2017-11-29 | 3 | -2/+19 | |
|/ | | | | Closes #633. | |||||
* | Build and test packages with libpq 10.1 and OpenSSL 1.0.2m | Daniele Varrazzo | 2017-11-28 | 3 | -12/+13 | |
| | ||||||
* | Merge branch 'fix-libpq-version' | Daniele Varrazzo | 2017-11-28 | 2 | -4/+8 | |
|\ | ||||||
| * | Fixed __libpq_version__ for Postgres >= 10.1 | Daniele Varrazzo | 2017-11-28 | 2 | -4/+8 | |
|/ | | | | | | | | | The version should be considered as 10.0.1; the number was generated as 10.1.0 instead. Version number bumped to test building new wheels packages. Fix #632. | |||||
* | Merge branch 'rm-eol' | Daniele Varrazzo | 2017-11-28 | 29 | -156/+89 | |
|\ | | | | | | | Fix #626, close #628. | |||||
| * | Use dict comprehensions | Daniele Varrazzo | 2017-11-28 | 2 | -6/+3 | |
| | | ||||||
| * | Dropped unused test functions | Daniele Varrazzo | 2017-11-28 | 1 | -3/+0 | |
| | | ||||||
| * | Documentation tweaked to omit Python 2.6 distinctions | Daniele Varrazzo | 2017-11-28 | 2 | -14/+12 | |
| | | ||||||
| * | Add news and update version check | Hugo | 2017-11-28 | 2 | -2/+12 | |
| | | ||||||
| * | Drop support for EOL Python 3.0-3.3 | Hugo | 2017-11-28 | 4 | -17/+4 | |
| | | ||||||
| * | Remove trailing semicolons | Hugo | 2017-11-28 | 1 | -3/+3 | |
| | | ||||||
| * | Remove redundant parentheses | Hugo | 2017-11-28 | 5 | -7/+7 | |
| | | ||||||
| * | __slots__ should be a tuple | Hugo | 2017-11-28 | 1 | -1/+1 | |
| | | ||||||
| * | Rewrite list creation as list literal | Hugo | 2017-11-28 | 1 | -3/+1 | |
| | | ||||||
| * | Replace comparison with None with equality operator | Hugo | 2017-11-28 | 1 | -1/+1 | |
| | | ||||||
| * | Update to Exception as e, print() | Hugo | 2017-11-28 | 4 | -37/+37 | |
| | | ||||||
| * | Simplify Boolean | Hugo | 2017-11-28 | 1 | -1/+1 | |
| | | ||||||
| * | Remove redundant hasattr checks | Hugo | 2017-11-28 | 2 | -33/+3 | |
| | | ||||||
| * | Drop support for EOL Python 2.6 | Hugo | 2017-11-28 | 9 | -34/+10 | |
|/ | ||||||
* | Merge remote-tracking branch 'jdufresne/json-docs' | Daniele Varrazzo | 2017-11-28 | 2 | -10/+4 | |
|\ | ||||||
| * | Update documentation to reflect JSON import behavior | Jon Dufresne | 2017-11-28 | 2 | -10/+4 | |
| | | | | | | | | | | | | | | | | 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. | |||||
* | | Merge remote-tracking branch 'jdufresne/with-statement' | Daniele Varrazzo | 2017-11-28 | 2 | -4/+0 | |
|\ \ | |/ |/| | ||||||
| * | Remove "from __future__ import with_statement" | Jon Dufresne | 2017-11-28 | 2 | -4/+0 | |
|/ | | | | | All versions of Python supported by psycopg2 have builtin support for the with statement. The import is unnecessary noise. | |||||
* | Merge branch 'python3_mintimeloggingconnection' | Daniele Varrazzo | 2017-11-28 | 2 | -0/+3 | |
|\ | ||||||
| * | Mention MinTimeLoggingCursor fix in NEWS file | Daniele Varrazzo | 2017-11-28 | 1 | -0/+6 | |
| | |