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 cheryl.sabella
Recipients cheryl.sabella
Date 2018-02-16.13:45:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1518788727.45.0.467229070634.issue32857@psf.upfronthosting.co.za>
In-reply-to
Content
I can open a PR for this, but thought it might be best to discuss it first as far as what should happen with None.

1. Raise an error that it's an incorrect call.
2. Ignore it and just return.
3. Loop through all the events and after_cancel each one. 

Tcl allows the after_cancel call to be an id or script(s), but they don't have functionality that would cancel everything (unless all the `script` values were sent).

FWIW, if no parameters are sent, this is the Tcl code:
	if (objc < 3) {
	    Tcl_WrongNumArgs(interp, 2, objv, "id|command");
	    return TCL_ERROR;
	}
History
Date User Action Args
2018-02-16 13:45:27cheryl.sabellasetrecipients: + cheryl.sabella
2018-02-16 13:45:27cheryl.sabellasetmessageid: <1518788727.45.0.467229070634.issue32857@psf.upfronthosting.co.za>
2018-02-16 13:45:27cheryl.sabellalinkissue32857 messages
2018-02-16 13:45:27cheryl.sabellacreate