]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Support "sqlalchemy.future" for engine_from_config
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 6 Nov 2020 20:44:39 +0000 (15:44 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 6 Nov 2020 20:45:30 +0000 (15:45 -0500)
commitf5ed0f5d6e0526a4ee2f9f164b7da79de11a481e
treea8a8ad00fa55481e176bc3f1cc4dd72e401d8472
parent8b9772de2dd9c9f1f01f96209d79ec1cd087b2fa
Support "sqlalchemy.future" for engine_from_config

Added the "future" keyword to the list of words that are known by the
:func:`_sa.engine_from_config` function, so that the values "true" and
"false" may be configured as "boolean" values when using a key such
as ``sqlalchemy.future = true`` or ``sqlalchemy.future = false``.

Change-Id: Ib4bba748497cc68e4c913dde54c23a4bb08b4deb
doc/build/changelog/unreleased_14/engfconfig.rst [new file with mode: 0644]
lib/sqlalchemy/engine/create.py
lib/sqlalchemy/engine/default.py
test/engine/test_parseconnect.py