Skip to content

Commit

Permalink
Remove SQLParseError from top-level module.
Browse files Browse the repository at this point in the history
  • Loading branch information
andialbrecht committed Oct 26, 2015
1 parent f39d334 commit 081105a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ IMPORTANT: The supported Python versions have changed with this release.
sqlparse 0.2.x supports Python 2.7 and Python >= 3.3.

Internal Changes
* sql.Token.to_unicode was removed.
* sqlparse.SQLParseError was removed from top-level module and moved to
sqlparse.exceptions.
* sqlparse.sql.Token.to_unicode was removed.


Release 0.1.18 (Oct 25, 2015)
Expand Down
2 changes: 0 additions & 2 deletions sqlparse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
from sqlparse import formatter

from sqlparse.compat import u
# Deprecated in 0.1.5. Will be removed in 0.2.0
from sqlparse.exceptions import SQLParseError # noqa


def parse(sql, encoding=None):
Expand Down

0 comments on commit 081105a

Please sign in to comment.