This commit was manufactured by cvs2svn to create tag 'r_1_2_1_c_1'.

This commit is contained in:
(no author)
2005-04-10 20:56:55 +00:00
parent fe384a9f09
commit 80d96285b6
73 changed files with 77 additions and 6439 deletions

View File

@ -1,5 +1,5 @@
#define version_info "(1,1,9,'final',1)"
#define __version__ "1.1.9"
#define version_info "(1,2,1,'gamma',1)"
#define __version__ "1.2.1c1"
/*
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -640,8 +640,9 @@ _mysql_ConnectionObject_close(
_mysql_ConnectionObject *self,
PyObject *args)
{
if (!args) return NULL;
if (!PyArg_ParseTuple(args, "")) return NULL;
if (args) {
if (!PyArg_ParseTuple(args, "")) return NULL;
}
if (self->open) {
Py_BEGIN_ALLOW_THREADS
mysql_close(&(self->connection));