comparison MySQLdb/__init__.py @ 81:228a45771d14 MySQLdb

Remove $Revision$ and $Author$ refs as hg doesn't use them.
author Andy Dustman <adustman@users.sourceforge.net>
date Mon, 22 Feb 2010 22:58:16 -0500
parents 6122b2cacd20
children
comparison
equal deleted inserted replaced
76:17062a65fde9 81:228a45771d14
14 14
15 For information on how MySQLdb handles type conversion, see the 15 For information on how MySQLdb handles type conversion, see the
16 MySQLdb.converters module. 16 MySQLdb.converters module.
17 """ 17 """
18 18
19 __revision__ = """$Revision$"""[11:-2]
20 from MySQLdb.release import __version__, version_info, __author__ 19 from MySQLdb.release import __version__, version_info, __author__
21 from MySQLdb.exceptions import Warning, Error, InterfaceError, DataError, \ 20 from MySQLdb.exceptions import Warning, Error, InterfaceError, DataError, \
22 DatabaseError, OperationalError, IntegrityError, InternalError, \ 21 DatabaseError, OperationalError, IntegrityError, InternalError, \
23 NotSupportedError, ProgrammingError 22 NotSupportedError, ProgrammingError
24 23