We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f39d334 commit 081105aCopy full SHA for 081105a
2 files changed
CHANGES
@@ -5,7 +5,9 @@ IMPORTANT: The supported Python versions have changed with this release.
5
sqlparse 0.2.x supports Python 2.7 and Python >= 3.3.
6
7
Internal Changes
8
-* sql.Token.to_unicode was removed.
+* sqlparse.SQLParseError was removed from top-level module and moved to
9
+ sqlparse.exceptions.
10
+* sqlparse.sql.Token.to_unicode was removed.
11
12
13
Release 0.1.18 (Oct 25, 2015)
sqlparse/__init__.py
@@ -15,8 +15,6 @@
15
from sqlparse import formatter
16
17
from sqlparse.compat import u
18
-# Deprecated in 0.1.5. Will be removed in 0.2.0
19
-from sqlparse.exceptions import SQLParseError # noqa
20
21
22
def parse(sql, encoding=None):
0 commit comments