|
26 | 26 | from ._compat import PY2
|
27 | 27 | from .constants import FIELD_TYPE
|
28 | 28 | 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) |
34 | 36 |
|
35 | 37 |
|
36 |
| -VERSION = (0, 7, 6, None) |
| 38 | +VERSION = (0, 7, 7, None) |
37 | 39 | threadsafety = 1
|
38 | 40 | apilevel = "2.0"
|
39 | 41 | paramstyle = "pyformat"
|
|
0 commit comments