- Python Home
- About
- News
- Documentation
- Downloads
- Community
- Foundation
- Developer's Guide
- Issue Tracker
- Issues
- Summaries
- User
- Administration
- Help
Message362178
This issue tracker has been migrated to GitHub,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
| Author | ilya |
|---|---|
| Recipients | ilya |
| Date | 2020-02-18.09:10:39 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1582017039.66.0.352808121621.issue39670@roundup.psfhosted.org> |
| In-reply-to |
| Content | |
|---|---|
Consider the following code:
def apply(a, b):
print(a)
print(b)
apply(1, 1)
2to3 suggests to fix it as follows:
--- a.py (original)
+++ a.py (refactored)
@@ -2,4 +2,4 @@
print(a)
print(b)
-apply(1, 1)
+(1)(*1) |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2020-02-18 09:10:39 | ilya | set | recipients: + ilya |
| 2020-02-18 09:10:39 | ilya | set | messageid: <1582017039.66.0.352808121621.issue39670@roundup.psfhosted.org> |
| 2020-02-18 09:10:39 | ilya | link | issue39670 messages |
| 2020-02-18 09:10:39 | ilya | create | |

