From afbd55ab464c6ced024916811b6a5b5d109f988d Mon Sep 17 00:00:00 2001 From: adustman Date: Sun, 9 Apr 2006 03:25:04 +0000 Subject: [PATCH] Bump version. Disable leak checking by default. --- MySQLdb/metadata.cfg | 4 ++-- MySQLdb/test_MySQLdb_capabilities.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MySQLdb/metadata.cfg b/MySQLdb/metadata.cfg index 4acc6ce..79bf4a2 100644 --- a/MySQLdb/metadata.cfg +++ b/MySQLdb/metadata.cfg @@ -1,6 +1,6 @@ [metadata] -version: 1.2.1 -version_info: (1,2,1,'final',1) +version: 1.2.1_p2 +version_info: (1,2,1,'final',2) description: Python interface to MySQL long_description: ========================= diff --git a/MySQLdb/test_MySQLdb_capabilities.py b/MySQLdb/test_MySQLdb_capabilities.py index 588b308..52d078a 100644 --- a/MySQLdb/test_MySQLdb_capabilities.py +++ b/MySQLdb/test_MySQLdb_capabilities.py @@ -13,7 +13,7 @@ class test_MySQLdb(test_capabilities.DatabaseTest): connect_kwargs = dict(db='test', read_default_file='~/.my.cnf', charset='utf8', sql_mode="ANSI,STRICT_TRANS_TABLES,TRADITIONAL") create_table_extra = "ENGINE=INNODB CHARACTER SET UTF8" - leak_test = True + leak_test = False def quote_identifier(self, ident): return "`%s`" % ident