summaryrefslogtreecommitdiff
path: root/databases/py-MySQLdb/files/patch-_mysql.c
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2002-01-28 10:36:25 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2002-01-28 10:36:25 +0000
commit99f7fd175a2380abcccbd32ba9ae295e90090529 (patch)
treeae2be0b5ffe9559843a614874cb0572aeefb110a /databases/py-MySQLdb/files/patch-_mysql.c
parentFix build error. (diff)
Update to 0.9.1.
Prompted by: many Submitted by: Anders Nordby <anders@fix.no>
Notes
Notes: svn path=/head/; revision=53899
Diffstat (limited to 'databases/py-MySQLdb/files/patch-_mysql.c')
-rw-r--r--databases/py-MySQLdb/files/patch-_mysql.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/databases/py-MySQLdb/files/patch-_mysql.c b/databases/py-MySQLdb/files/patch-_mysql.c
deleted file mode 100644
index fe72118ba2fb..000000000000
--- a/databases/py-MySQLdb/files/patch-_mysql.c
+++ /dev/null
@@ -1,17 +0,0 @@
-
-$FreeBSD$
-
---- _mysql.c 2002/01/09 13:02:08 1.1
-+++ _mysql.c 2002/01/09 13:06:07
-@@ -781,7 +781,11 @@
- goto error;
- }
- if (!row) {
-+#if PY_VERSION_HEX < 0x02020000
- if (_PyTuple_Resize(r, i, 0) == -1) goto error;
-+#else
-+ if (_PyTuple_Resize(r, i) == -1) goto error;
-+#endif
- break;
- }
- v = convert_row(self, row);