index
:
delta/python-packages/psycopg2.git
2_7_3_2
appveyor-py
async-keyword
bug-550
bug-557
bug-558
cockroachdb-tests
code-cleanup
column-slice
connection-info
cpychecker
decorators-fun
description-extra-attrs
diag-schema-name-nonloc
dont_set_datestyle_in_replication_mode
drop-display-size
encrypt-password-fix-tests
errors-module
errors-module-c
execute-locks
expand-version
fast-codecs
fast-executemany
fast-namedtuple
fast-test
fix-1019
fix-1073
fix-1248
fix-211
fix-443
fix-453
fix-512
fix-517
fix-518
fix-528
fix-562
fix-570
fix-578
fix-604
fix-679
fix-707
fix-707-27
fix-716
fix-716-27
fix-746
fix-788
fix-790
fix-794
fix-808
fix-856
fix-886
fix-887
fix-901
fix-948
fix-961
fix-binaries-2.7.6
fix-bsd-version
fix-iter-warning
fix-wheel-libresolv
goodbye-initd
goodbye-psycopg1
identifier-sequence
info-dsn-params
issue-template
libpq-10
libpq-10.1
libpq-ptrs
lo64
maint_2_4
maint_2_5
maint_2_6
maint_2_7
maint_2_8
manylinux
manylinux-dist
master
module-init-cleanup
mogrify-on-closed-cursor
musllinux
named-callproc
namedtuple-invalid-identifiers
naming
nested-array-nulls
new-release-procedure
no-set-default-session
no-unittest2
obscure-password-before-connect
openssl-1.0.2n
openssl-1.1-windows
pg10
pg12
pull-507
py310
py36-warnings
py37
py38
py38-win
py39-appveyor
qstring-writable-encoding
qualified
register-bytes
separate-binary
session-attributes
sql-compose
sql-copy
strip-macos
strip-wheel
test-dinosaurs
test-pg-11
test-postgres-10beta1
test-windows
test_i686
test_libpq91
testmr
travis
travis-db-matrix
travis-deadlock
github.com: psycopg/psycopg2.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
psycopg
Commit message (
Expand
)
Author
Age
Files
Lines
*
Less lookups and more efficient calls in microprotocols_adapt().
Daniele Varrazzo
2010-11-09
1
-9
/
+29
*
Less lookups and more efficient calls in microprotocols_getquoted().
Daniele Varrazzo
2010-11-09
1
-20
/
+31
*
Replaced PyObject_CallFunction() with *ObjArgs() where more efficient.
Daniele Varrazzo
2010-11-09
7
-7
/
+7
*
Win32 *time_r fix
Jason Erickson
2010-11-09
1
-10
/
+3
*
fixed crash in pdecimal_str with a few Python 2.5.x releases.
Daniele Varrazzo
2010-11-09
1
-14
/
+26
*
Fixed repr for Decimal wrapper.
Daniele Varrazzo
2010-11-09
1
-1
/
+1
*
Dropped file imported by mistake.
Daniele Varrazzo
2010-11-09
1
-147
/
+0
*
Use the adapter of an object superclass if available.
Daniele Varrazzo
2010-11-08
1
-4
/
+59
*
Use faster function to build tuples in adaptation.
Daniele Varrazzo
2010-11-08
1
-4
/
+7
*
Py_TYPE defined as it is in Python 2.6.
Daniele Varrazzo
2010-11-08
1
-1
/
+1
*
Added compatibility macro for pre 2.6
Daniele Varrazzo
2010-11-05
1
-0
/
+4
*
Added warning note about equivalence inconsistence between Notify and tuples.
Daniele Varrazzo
2010-11-05
1
-0
/
+18
*
The Notify type is hashable.
Daniele Varrazzo
2010-11-05
1
-16
/
+32
*
Payload default is the empty string.
Daniele Varrazzo
2010-11-05
1
-1
/
+1
*
Added comparison between Notify objects and Notify or tuple.
Daniele Varrazzo
2010-11-05
1
-1
/
+52
*
Added documentation for the Xid object.
Daniele Varrazzo
2010-11-05
1
-12
/
+48
*
Ensure unicode is accepted as type for transaction ids.
Daniele Varrazzo
2010-11-05
1
-1
/
+1
*
Added Xid.from_string() constructor.
Daniele Varrazzo
2010-11-05
1
-6
/
+29
*
Expose the Xid object in the extension module.
Daniele Varrazzo
2010-11-05
1
-0
/
+1
*
Fixed handling of commit/rollback prepared in green mode
Daniele Varrazzo
2010-11-05
1
-0
/
+1
*
Raise NotSuppoertdError if tpc is used with PostgreSQL < 8.1
Daniele Varrazzo
2010-11-05
2
-0
/
+14
*
Encoding/decoding in base64 refactored.
Daniele Varrazzo
2010-11-05
1
-19
/
+16
*
Added str() and repr() for Xid objects.
Daniele Varrazzo
2010-11-05
1
-2
/
+45
*
xid_get_tid returns a Python string, not a buffer.
Daniele Varrazzo
2010-11-05
3
-25
/
+13
*
Dropped XID_UNPARSED: we use format_id = None for PG xact ids.
Daniele Varrazzo
2010-11-05
2
-37
/
+27
*
XA transaction ids can be decoded from PostgreSQL transaction ids.
Daniele Varrazzo
2010-11-05
1
-10
/
+146
*
Dropped pg_xact_id from XidObject
Daniele Varrazzo
2010-11-05
2
-35
/
+3
*
Use pgjdbc algorithm to convert XA xids into strings.
Daniele Varrazzo
2010-11-05
1
-3
/
+52
*
Keep the GIL while converting the xid into the PostgreSQL transaction id.
Daniele Varrazzo
2010-11-05
3
-12
/
+18
*
Added tpc_recover method.
Daniele Varrazzo
2010-11-05
5
-8
/
+214
*
Added tpc_commit and tpc_rollback methods.
Daniele Varrazzo
2010-11-05
1
-0
/
+120
*
Added tpc_prepare and CONN_STATUS_PREPARED.
Daniele Varrazzo
2010-11-05
8
-8
/
+178
*
begin and commit can't be called during a two-phase transaction.
Daniele Varrazzo
2010-11-05
2
-0
/
+7
*
Added tpc_begin() and current xid on connection.
Daniele Varrazzo
2010-11-05
5
-0
/
+118
*
Copyright of TPC files moved to LGPL V3.
Daniele Varrazzo
2010-11-05
2
-24
/
+34
*
hook up two phase commit tests.
Daniele Varrazzo
2010-11-05
1
-1
/
+1
*
There is no point in allowing subclasses of Xid.
Daniele Varrazzo
2010-11-05
1
-1
/
+1
*
implement sequence behaviour, as required for transaction IDs.
Daniele Varrazzo
2010-11-05
2
-1
/
+44
*
Added connection.xid() and related objects.
Daniele Varrazzo
2010-11-05
4
-0
/
+318
*
Added documentation for the Notify object.
Daniele Varrazzo
2010-11-05
1
-6
/
+25
*
Notify object exposed in the extensions module.
Daniele Varrazzo
2010-11-05
1
-0
/
+1
*
Added repr method for Notify object.
Daniele Varrazzo
2010-11-05
1
-1
/
+29
*
Adding Notify object with payload.
Daniele Varrazzo
2010-11-05
4
-8
/
+296
*
Use PQfreemem to free memory allocated by the libpq.
Daniele Varrazzo
2010-10-08
1
-3
/
+3
*
Dropped PSYCOPG_OWN_QUOTING.
Daniele Varrazzo
2010-10-08
4
-164
/
+0
*
Fixed access to freed memory in conn_get_isolation_level().
Daniele Varrazzo
2010-10-08
1
-4
/
+8
*
cursor.mogrify() accepts unicode queries.
Daniele Varrazzo
2010-10-05
1
-30
/
+38
*
Common code in execute() and mogrify() merged.
Daniele Varrazzo
2010-10-05
1
-85
/
+68
*
Don't execute a ROLLBACK on close()/GC.
Daniele Varrazzo
2010-09-23
1
-14
/
+11
*
Applied spelling fixes patch from Peter Eisentraut
Federico Di Gregorio
2010-07-18
2
-2
/
+2
[next]