You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
13 lines
316 B
Python
13 lines
316 B
Python
# Python 2.7 sqlalchemy-1.013/sql/crud.py
|
|
def _extend_values_for_multiparams(compiler, stmt, c):
|
|
c(
|
|
[
|
|
(
|
|
(compiler() if compiler()
|
|
else compiler())
|
|
if c in stmt else compiler(),
|
|
)
|
|
]
|
|
for i in enumerate(stmt)
|
|
)
|