This commit is contained in:
INADA Naoki
2018-06-27 20:27:54 +09:00
parent 99c1eea578
commit 3de469db63
4 changed files with 24 additions and 38 deletions

View File

@ -1,4 +1,5 @@
"""MySQLdb - A DB API v2.0 compatible interface to MySQL.
"""
MySQLdb - A DB API v2.0 compatible interface to MySQL.
This package is a wrapper around _mysql, which mostly implements the
MySQL C API.
@ -10,10 +11,8 @@ on other items.
For information on how MySQLdb handles type conversion, see the
MySQLdb.converters module.
"""
__revision__ = """$Revision$"""[11:-2]
from MySQLdb.release import __version__, version_info, __author__
import _mysql
@ -98,6 +97,3 @@ __all__ = [ 'BINARY', 'Binary', 'Connect', 'Connection', 'DATE',
'escape_sequence', 'escape_string', 'get_client_info',
'paramstyle', 'string_literal', 'threadsafety', 'version_info']