Metadata updates, 1.2.2b2

This commit is contained in:
adustman
2006-10-13 22:12:34 +00:00
parent 1044fea0ff
commit 1699cc8eb1
3 changed files with 12 additions and 6 deletions

View File

@ -55,6 +55,12 @@ PERFORMANCE OF THIS SOFTWARE.
# define MyFree(ob) ob->ob_type->tp_free((PyObject *)ob)
#endif
#if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
typedef int Py_ssize_t;
#define PY_SSIZE_T_MAX INT_MAX
#define PY_SSIZE_T_MIN INT_MIN
#endif
static PyObject *_mysql_MySQLError;
static PyObject *_mysql_Warning;
static PyObject *_mysql_Error;