Skip to content

Commit b7255d3

Browse files
authored
Improved exception handling when importing the module (#596)
The current expection handling is too vague, and in certain circumstances, the error message may confuse the user. For example, if an error occurs while importing the "_mysql" module, the original error message is as follows: ``` File "MySQLdb/__init__.py", line 18, in <module> from . import _mysql ImportError: /lib64/libstdc++.so.6: cannot allocate memory in static TLS block ``` But on the user side, he can only see the exception message like this: ``` /MySQLdb/__init__.py", line 24, in <module> version_info, _mysql.version_info, _mysql.__file__ NameError: name '_mysql' is not defined ``` This PR fixes this issue by making the exception handling statements more precise.
1 parent 1f4fb4d commit b7255d3

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

MySQLdb/__init__.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,11 @@
1313
MySQLdb.converters module.
1414
"""
1515

16-
try:
17-
from MySQLdb.release import version_info
18-
from . import _mysql
16+
# Check if the version of _mysql matches the version of MySQLdb.
17+
from MySQLdb.release import version_info
18+
from . import _mysql
1919

20-
assert version_info == _mysql.version_info
21-
except Exception:
20+
if version_info != _mysql.version_info:
2221
raise ImportError(
2322
"this is MySQLdb version {}, but _mysql is version {!r}\n_mysql: {!r}".format(
2423
version_info, _mysql.version_info, _mysql.__file__

0 commit comments

Comments
 (0)