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: tkinter.py invalid number of parameter for _tkinet.create
Type: Stage:
Components: Tkinter Versions: Python 2.4
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: loewis Nosy List: bebel, loewis
Priority: normal Keywords:

Created on 2004-09-10 06:21 by bebel, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg22419 - (view) Author: bertrandbfr (bebel) Date: 2004-09-10 06:21
Python 2.4a3 (#1, Sep  9 2004, 21:26:33) 
[GCC 3.2.2] on linux2

  File "/usr/local/lib/python2.4/lib-tk/Tkinter.py",
line 1569, in __init__
    self.tk = _tkinter.create(screenName, baseName,
className, interactive, wantobjects, useTk, sync, use)
TypeError: function takes at most 4 arguments (8 given)

this cause problem with skencil
msg22420 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2004-09-10 06:36
Logged In: YES 
user_id=21627

Are you sure you are using the correct _tkinter module?
_tkinter.create does take 8 arguments.
msg22421 - (view) Author: bertrandbfr (bebel) Date: 2004-09-10 18:47
Logged In: YES 
user_id=1119278

Oooh i'm sorry

the guilty is skencil-0.6.16 who redefine Tkinter_Create
with only four parameters in paxtkinter.c

shame on me.
msg22422 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2004-09-10 20:30
Logged In: YES 
user_id=21627

Closing this as invalid.
History
Date User Action Args
2022-04-11 14:56:06adminsetgithub: 40892
2004-09-10 06:21:19bebelcreate