Fixed #22401 -- Deprecated regular expression parsing of initial SQL in favor of installing sqlparse.

This commit is contained in:
julien 'pouete' Godin 2014-04-08 12:52:59 +02:00 committed by Tim Graham
parent 5f2f47fdfc
commit 071c933775
6 changed files with 48 additions and 13 deletions

View file

@ -166,6 +166,7 @@ dependencies:
* memcached_, plus a :ref:`supported Python binding <memcached>`
* gettext_ (:ref:`gettext_on_windows`)
* selenium_
* sqlparse_
You can find these dependencies in `pip requirements files`_ inside the
``tests/requirements`` directory of the Django source tree and install them
@ -197,6 +198,7 @@ associated tests will be skipped.
.. _memcached: http://memcached.org/
.. _gettext: http://www.gnu.org/software/gettext/manual/gettext.html
.. _selenium: https://pypi.python.org/pypi/selenium
.. _sqlparse: https://pypi.python.org/pypi/sqlparse
.. _pip requirements files: http://www.pip-installer.org/en/latest/cookbook.html#requirements-files
Code coverage

View file

@ -25,6 +25,9 @@ about each item can often be found in the release notes of two versions prior.
* Using an incorrect count of unpacked values in the ``for`` template tag
will raise an exception rather than fail silently.
* The regular expression parsing of SQL initial data will be removed and
``sqlparse`` will be required for the feature.
.. _deprecation-removed-in-1.9:
1.9