8000 0.7.7 · randybrown-github/PyMySQL@f85cda0 · GitHub
[go: up one dir, main page]

Skip to content

Commit f85cda0

Browse files
committed
0.7.7
1 parent 02910b7 commit f85cda0

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

pymysql/__init__.py

+8-6
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,16 @@
2626
from ._compat import PY2
2727
from .constants import FIELD_TYPE
2828
from .converters import escape_dict, escape_sequence, escape_string
29-
from .err import Warning, Error, InterfaceError, DataError, \
30-
DatabaseError, OperationalError, IntegrityError, InternalError, \
31-
NotSupportedError, ProgrammingError, MySQLError
32-
from .times import Date, Time, Timestamp, \
33-
DateFromTicks, TimeFromTicks, TimestampFromTicks
29+
from .err import (
30+
Warning, Error, InterfaceError, DataError,
31+
DatabaseError, OperationalError, IntegrityError, InternalError,
32+
NotSupportedError, ProgrammingError, MySQLError)
33+
from .times import (
34+
Date, Time, Timestamp,
35+
DateFromTicks, TimeFromTicks, TimestampFromTicks)
3436

3537

36-
VERSION = (0, 7, 6, None)
38+
VERSION = (0, 7, 7, None)
3739
threadsafety = 1
3840
apilevel = "2.0"
3941
paramstyle = "pyformat"

0 commit comments

Comments
 (0)
0