We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55f1cbd commit 2c20101Copy full SHA for 2c20101
pymysqlreplication/constants/__init__.py
@@ -1,4 +1,4 @@
1
# -*- coding: utf-8 -*-
2
3
-from BINLOG import *
4
-from FIELD_TYPE import *
+from .BINLOG import *
+from .FIELD_TYPE import *
pymysqlreplication/packet.py
@@ -4,9 +4,7 @@
5
from pymysql.util import byte2int
6
7
-import constants
8
-import event
9
-import row_event
+from pymysqlreplication import constants, event, row_event
10
11
# Constants from PyMYSQL source code
12
NULL_COLUMN = 251
0 commit comments