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:39ilyasetrecipients: + ilya
2020-02-18 09:10:39ilyasetmessageid: <1582017039.66.0.352808121621.issue39670@roundup.psfhosted.org>
2020-02-18 09:10:39ilyalinkissue39670 messages
2020-02-18 09:10:39ilyacreate