]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Use compat.exec_()
authorMartin Häcker <mhaecker@mac.com>
Tue, 23 Mar 2021 15:46:18 +0000 (11:46 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 23 Mar 2021 17:56:36 +0000 (13:56 -0400)
commitae867bf0cbdbb935742d8cb22e1b76136b77965c
tree22101036009c0578e8c0fdf4c95db800654e0e9b
parent8bf920d52ddd4ec5f62a00fb9db370a076aa375d
Use compat.exec_()

Fixed a bug where python 2.7.5 (default on CentOS 7) wasn't able to import
sqlalchemy, because on this version of Python ``exec "statement"`` and
``exec("statement")`` do not behave the same way.  The compatibility
``exec_()`` function was used instead.

Fixes: #6069
Closes: #6112
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/6112
Pull-request-sha: 4e951f9278eb462d1432a92b7bad93b973e4e2a5

Change-Id: I34e00250e874368e83c3e992be80e989a3c4f054
doc/build/changelog/unreleased_14/6069.rst [new file with mode: 0644]
lib/sqlalchemy/sql/lambdas.py