mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-02-07 12:50:32 +03:00
SGA-related changes.
This commit is contained in:
parent
10dc03462b
commit
431a2aec6c
|
@ -1,3 +1,7 @@
|
|||
2005-04-18 Federico Di Gregorio <fog@debian.org>
|
||||
|
||||
* MANIFEST.in: included debian directory.
|
||||
|
||||
2005-04-10 Federico Di Gregorio <fog@debian.org>
|
||||
|
||||
* psycopg/adapter_list.*: added list adapter.
|
||||
|
|
|
@ -3,6 +3,7 @@ recursive-include lib *.py
|
|||
recursive-include tests *.py
|
||||
recursive-include ZPsycopgDA *.py *.gif *.dtml
|
||||
recursive-include examples *.py somehackers.jpg whereareyou.jpg
|
||||
recursive-include debian *
|
||||
recursive-include doc TODO HACKING SUCCESS ChangeLog-1.x
|
||||
include scripts/maketypes.sh scripts/buildtypes.py
|
||||
include AUTHORS README INSTALL ChangeLog setup.py setup.cfg
|
||||
|
|
|
@ -76,6 +76,9 @@ class DictRow(list):
|
|||
res.append((n, list.__getitem__(self, v)))
|
||||
return res
|
||||
|
||||
def keys(self):
|
||||
return self._cursor.index.keys()
|
||||
|
||||
|
||||
|
||||
class SQL_IN(object):
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[build_ext]
|
||||
define=PSYCOPG_EXTENSIONS,PSYCOPG_DISPLAY_SIZE,HAVE_PQFREEMEM,HAVE_PQPROTOCOL3,PSYCOPG_DEBUG
|
||||
define=PSYCOPG_EXTENSIONS,PSYCOPG_DISPLAY_SIZE,HAVE_PQFREEMEM,HAVE_PQPROTOCOL3
|
||||
# PSYCOPG_DEBUG can be added to enable verbose debug information
|
||||
# PSYCOPG_OWN_QUOTING can be added above but it is deprecated
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user