mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-26 02:43:43 +03:00
Builds again on win32 (closes: #132).
This commit is contained in:
parent
0f5e4e7340
commit
f4dc6936a2
|
@ -1,3 +1,8 @@
|
|||
2006-10-29 Federico Di Gregorio <fog@initd.org>
|
||||
|
||||
* Applied patch from Jason Erickson to make psycopg build
|
||||
again on win32 (closes: #132).
|
||||
|
||||
2006-09-30 Federico Di Gregorio <fog@initd.org>
|
||||
|
||||
* ZpsycopgDA/DA.py: applied the infinity patch from 1.1 (fixes #122).
|
||||
|
|
|
@ -31,7 +31,7 @@ extern "C" {
|
|||
extern PyTypeObject asisType;
|
||||
|
||||
typedef struct {
|
||||
PyObject_HEAD;
|
||||
PyObject_HEAD
|
||||
|
||||
/* this is the real object we wrap */
|
||||
PyObject *wrapped;
|
||||
|
|
|
@ -32,7 +32,7 @@ extern "C" {
|
|||
extern PyTypeObject binaryType;
|
||||
|
||||
typedef struct {
|
||||
PyObject_HEAD;
|
||||
PyObject_HEAD
|
||||
|
||||
PyObject *wrapped;
|
||||
PyObject *buffer;
|
||||
|
|
|
@ -31,7 +31,7 @@ extern "C" {
|
|||
extern PyTypeObject pydatetimeType;
|
||||
|
||||
typedef struct {
|
||||
PyObject_HEAD;
|
||||
PyObject_HEAD
|
||||
|
||||
PyObject *wrapped;
|
||||
int type;
|
||||
|
|
|
@ -31,7 +31,7 @@ extern "C" {
|
|||
extern PyTypeObject listType;
|
||||
|
||||
typedef struct {
|
||||
PyObject_HEAD;
|
||||
PyObject_HEAD
|
||||
|
||||
PyObject *wrapped;
|
||||
PyObject *connection;
|
||||
|
|
|
@ -31,7 +31,7 @@ extern "C" {
|
|||
extern PyTypeObject mxdatetimeType;
|
||||
|
||||
typedef struct {
|
||||
PyObject_HEAD;
|
||||
PyObject_HEAD
|
||||
|
||||
PyObject *wrapped;
|
||||
int type;
|
||||
|
|
|
@ -31,7 +31,7 @@ extern "C" {
|
|||
extern PyTypeObject pbooleanType;
|
||||
|
||||
typedef struct {
|
||||
PyObject_HEAD;
|
||||
PyObject_HEAD
|
||||
|
||||
/* this is the real object we wrap */
|
||||
PyObject *wrapped;
|
||||
|
|
|
@ -31,7 +31,7 @@ extern "C" {
|
|||
extern PyTypeObject qstringType;
|
||||
|
||||
typedef struct {
|
||||
PyObject_HEAD;
|
||||
PyObject_HEAD
|
||||
|
||||
PyObject *wrapped;
|
||||
PyObject *buffer;
|
||||
|
|
|
@ -38,7 +38,7 @@ extern "C" {
|
|||
extern PyTypeObject connectionType;
|
||||
|
||||
typedef struct {
|
||||
PyObject_HEAD;
|
||||
PyObject_HEAD
|
||||
|
||||
pthread_mutex_t lock; /* the global connection lock */
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ extern "C" {
|
|||
extern PyTypeObject cursorType;
|
||||
|
||||
typedef struct {
|
||||
PyObject_HEAD;
|
||||
PyObject_HEAD
|
||||
|
||||
connectionObject *conn; /* connection owning the cursor */
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ extern "C" {
|
|||
extern PyTypeObject isqlquoteType;
|
||||
|
||||
typedef struct {
|
||||
PyObject_HEAD;
|
||||
PyObject_HEAD
|
||||
|
||||
PyObject *wrapped;
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user