Skip to content

Commit 23addef

Browse files
ckclarkmethane
authored andcommitted
Remove unused "NULL" from __all__ in __init__.py (PyMySQL#369)
Since the symbol "NULL" is removed in 819688b, it should be also removed from `__all__`. Fix issue PyMySQL#368.
1 parent 6f5f48b commit 23addef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MySQLdb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def Connect(*args, **kwargs):
8989
'Date', 'Time', 'Timestamp', 'DateFromTicks', 'TimeFromTicks',
9090
'TimestampFromTicks', 'DataError', 'DatabaseError', 'Error',
9191
'FIELD_TYPE', 'IntegrityError', 'InterfaceError', 'InternalError',
92-
'MySQLError', 'NULL', 'NUMBER', 'NotSupportedError', 'DBAPISet',
92+
'MySQLError', 'NUMBER', 'NotSupportedError', 'DBAPISet',
9393
'OperationalError', 'ProgrammingError', 'ROWID', 'STRING', 'TIME',
9494
'TIMESTAMP', 'Warning', 'apilevel', 'connect', 'connections',
9595
'constants', 'converters', 'cursors', 'debug', 'escape',

0 commit comments

Comments
 (0)