diff --git a/.gitignore b/.gitignore index 236fc37..86e9a68 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,5 @@ __pycache__ /.tox /build /pymysql/tests/databases.json + +/.idea diff --git a/pymysql/connections.py b/pymysql/connections.py index 5cdea41..19b44fc 100644 --- a/pymysql/connections.py +++ b/pymysql/connections.py @@ -1117,6 +1117,9 @@ class Connection(object): class MySQLResult(object): def __init__(self, connection): + """ + @type connection: Connection + """ self.connection = connection self.affected_rows = None self.insert_id = None @@ -1144,7 +1147,7 @@ class MySQLResult(object): else: self._read_result_packet(first_packet) finally: - self.connection = False + self.connection = None def init_unbuffered_query(self): self.unbuffered_active = True