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 terry.reedy
Recipients kbk, roger.serwy, serhiy.storchaka, terry.reedy
Date 2014-06-04.21:00:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401915659.28.0.678171933025.issue21659@psf.upfronthosting.co.za>
In-reply-to
Content
Unless you feel like struggling with the 2.7's custom calltip calculation code for possibly little or no gain, please close this as wont' fix. See #20122, especially msg208454 and point 3. f6f2d9d04cd0 made this change to improve the calltip for *x and **y from always completely wrong to usually right:
-                items.append("...")
+                items.append("*args")
             if fob.func_code.co_flags & 0x8:
-                items.append("***")
+                items.append("**kwds")

This issue was fixed in 3.x, which does not have old-style classes to contend with.
History
Date User Action Args
2014-06-04 21:00:59terry.reedysetrecipients: + terry.reedy, kbk, roger.serwy, serhiy.storchaka
2014-06-04 21:00:59terry.reedysetmessageid: <1401915659.28.0.678171933025.issue21659@psf.upfronthosting.co.za>
2014-06-04 21:00:59terry.reedylinkissue21659 messages
2014-06-04 21:00:58terry.reedycreate