Message362182
apply was a builtin in Python 2 and not sure 2to3 can differentiate between user defined functions that shadow builtins. https://docs.python.org/3.8/library/2to3.html#2to3fixer-apply .
Removes usage of apply(). For example apply(function, *args, **kwargs) is converted to function(*args, **kwargs).
You can skip the apply fixer: 2to3 -x apply /tmp/bar.py |
|
| Date |
User |
Action |
Args |
| 2020-02-18 09:43:02 | xtreak | set | recipients:
+ xtreak, ilya |
| 2020-02-18 09:43:02 | xtreak | set | messageid: <[email protected]> |
| 2020-02-18 09:43:02 | xtreak | link | issue39670 messages |
| 2020-02-18 09:43:02 | xtreak | create | |
|