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 larry
Recipients larry, serhiy.storchaka
Date 2015-05-03.18:56:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
Optional groups were designed to support two specific legacy use cases:
  * functions that have groups of parameters that are 
  * functions with optional parameters to the left of required parameters

They are not intended to be used in cases like this.  I really, really wish you would stop using them except for these specific legacy cases.

Furthermore, the argument parsing for tkinter.tkapp.wantobjects has a very clear translation into Argument Clinic:

    value: int = -1
    /


Optional groups should not be used for single-argument functions.  I have no interest in fixing this bug.
History
Date User Action Args
2015-05-03 18:56:08larrysetrecipients: + larry, serhiy.storchaka
2015-05-03 18:56:08larrysetmessageid: <[email protected]>
2015-05-03 18:56:08larrylinkissue24051 messages
2015-05-03 18:56:08larrycreate