Staging
v0.5.1
https://github.com/python/cpython
Revision 174548d65495bc6465fddc356a094020e2561e13 authored by Kurt B. Kaiser on 30 March 2004, 04:07:00 UTC, committed by Kurt B. Kaiser on 30 March 2004, 04:07:00 UTC
which use the Space key.  Limit unmodified user keybindings to the
function keys.
Python Bug 775353, IDLEfork Bugs 755647, 761557

Improve error handling during startup if there's no Tkinter.

M NEWS.txt
M PyShell.py
M config-keys.def
M configHandler.py
M keybindingDialog.py
1 parent 61525be
Raw File
Tip revision: 174548d65495bc6465fddc356a094020e2561e13 authored by Kurt B. Kaiser on 30 March 2004, 04:07:00 UTC
Keybindings with the Shift modifier now work correctly. So do bindings
Tip revision: 174548d
WinMain.c
/* Minimal main program -- everything is loaded from the library. */

#define WIN32_LEAN_AND_MEAN
#include <windows.h>

#include "Python.h"

int WINAPI WinMain(
    HINSTANCE hInstance,      /* handle to current instance */
    HINSTANCE hPrevInstance,  /* handle to previous instance */
    LPSTR lpCmdLine,          /* pointer to command line */
    int nCmdShow              /* show state of window */
)
{
    return Py_Main(__argc, __argv);
}
back to top