mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Issue #4350: Removed a number of out-of-dated and non-working for a long time
Tkinter methods.
This commit is contained in:
parent
9d63ce4273
commit
e6d9805ec4
3 changed files with 3 additions and 92 deletions
|
@ -26,9 +26,6 @@ static int tk_load_failed;
|
|||
int
|
||||
Tcl_AppInit(Tcl_Interp *interp)
|
||||
{
|
||||
#ifdef WITH_MOREBUTTONS
|
||||
Tk_Window main_window;
|
||||
#endif
|
||||
const char *_tkinter_skip_tk_init;
|
||||
#ifdef TKINTER_PROTECT_LOADTK
|
||||
const char *_tkinter_tk_failed;
|
||||
|
@ -113,29 +110,13 @@ Tcl_AppInit(Tcl_Interp *interp)
|
|||
return TCL_ERROR;
|
||||
}
|
||||
|
||||
#ifdef WITH_MOREBUTTONS
|
||||
main_window = Tk_MainWindow(interp);
|
||||
#else
|
||||
Tk_MainWindow(interp);
|
||||
#endif
|
||||
|
||||
#ifdef TK_AQUA
|
||||
TkMacOSXInitAppleEvents(interp);
|
||||
TkMacOSXInitMenus(interp);
|
||||
#endif
|
||||
|
||||
#ifdef WITH_MOREBUTTONS
|
||||
{
|
||||
extern Tcl_CmdProc studButtonCmd;
|
||||
extern Tcl_CmdProc triButtonCmd;
|
||||
|
||||
Tcl_CreateCommand(interp, "studbutton", studButtonCmd,
|
||||
(ClientData) main_window, NULL);
|
||||
Tcl_CreateCommand(interp, "tributton", triButtonCmd,
|
||||
(ClientData) main_window, NULL);
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef WITH_PIL /* 0.2b5 and later -- not yet released as of May 14 */
|
||||
{
|
||||
extern void TkImaging_Init(Tcl_Interp *);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue