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.

classification
Title: Convert Tkinter to METH_VARARGS style
Type: Stage:
Components: Tkinter Versions: Python 2.5
process
Status: closed Resolution: later
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, loewis
Priority: normal Keywords: patch

Created on 2006-05-29 14:04 by georg.brandl, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
tkinter-varargs.diff georg.brandl, 2006-05-29 14:04
Messages (3)
msg50372 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2006-05-29 14:04
Patch attached. Martin, as the maintainer please check.
I also changed some PyTuple_Size and PyTuple_GetItem to
the corresponding macros when tupleness is guaranteed.
msg50373 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2006-06-04 08:19
Logged In: YES 
user_id=21627

The patch is wrong: .call() might get called with a single
argument which is a tuple; this should be treated the same
as if multiple arguments had been passed.

Please leave out the unrelated changes to the tuple API.
msg50374 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2006-08-03 18:03
Logged In: YES 
user_id=849994

This can be addressed when METH_OLDARGS is officially
deprecated.
History
Date User Action Args
2022-04-11 14:56:17adminsetgithub: 43429
2006-05-29 14:04:43georg.brandlcreate