Remove py27 support from Python sources. (#394)

This commit is contained in:
Bastien Vallet
2019-11-28 14:04:42 +01:00
committed by Inada Naoki
parent 5811678dea
commit 026e87f7b5
11 changed files with 23 additions and 65 deletions

View File

@ -4,10 +4,8 @@ These classes are dictated by the DB API v2.0:
https://www.python.org/dev/peps/pep-0249/
"""
from .compat import StandardError
class MySQLError(StandardError):
class MySQLError(Exception):
"""Exception related to operation with MySQL."""