From 6c0fa96e4c2770cf51ccfa272ad48e7fa46a4607 Mon Sep 17 00:00:00 2001 From: Lloyd Date: Wed, 4 Oct 2017 04:05:51 +0900 Subject: [PATCH] Add pymysql.connections.Connection#begin(self) stub (#1636) --- third_party/2and3/pymysql/connections.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/third_party/2and3/pymysql/connections.pyi b/third_party/2and3/pymysql/connections.pyi index 62109ba60..dd8b5e01f 100644 --- a/third_party/2and3/pymysql/connections.pyi +++ b/third_party/2and3/pymysql/connections.pyi @@ -92,6 +92,7 @@ class Connection: def close(self): ... def autocommit(self, value): ... def commit(self): ... + def begin(self) -> None: ... def rollback(self): ... def escape(self, obj): ... def literal(self, obj): ...