Skip to content

Commit 081105a

Browse files
committed
Remove SQLParseError from top-level module.
1 parent f39d334 commit 081105a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CHANGES

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ IMPORTANT: The supported Python versions have changed with this release.
55
sqlparse 0.2.x supports Python 2.7 and Python >= 3.3.
66

77
Internal Changes
8-
* sql.Token.to_unicode was removed.
8+
* sqlparse.SQLParseError was removed from top-level module and moved to
9+
sqlparse.exceptions.
10+
* sqlparse.sql.Token.to_unicode was removed.
911

1012

1113
Release 0.1.18 (Oct 25, 2015)

sqlparse/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
from sqlparse import formatter
1616

1717
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
2018

2119

2220
def parse(sql, encoding=None):

0 commit comments

Comments
 (0)