summaryrefslogtreecommitdiffstats
path: root/Modules/_tkinter.c
Commit message (Collapse)AuthorAgeFilesLines
* Adapt Mac specific code to new universal headers (I think -- this isGuido van Rossum1997-04-291-3/+3
| | | | Jack's code).
* New form of PyFPE_END_PROTECT macro.Guido van Rossum1997-03-141-1/+1
|
* Changes for Lee Busby's SIGFPE patch set.Guido van Rossum1997-02-141-1/+5
| | | | | Two new modules fpectl and fpetest. Surround various and sundry f.p. operations with PyFPE_*_PROTECT macros.
* reformattedBarry Warsaw1997-01-161-835/+977
| | | | | | memory leak in Tkapp_(Create|Delete)FileHandler plugged. standard eyeballing
* Another fix for Split() -- don't refuse {"} but turn it into ".Guido van Rossum1996-12-171-1/+7
| | | | | | This is needed because if a configure option has " as its value, it will be rendered as {"}; after stripping one level of quoting it's just ", on which splitlist will barf.
* Check errors returned by recursive call to Split().Guido van Rossum1996-12-171-5/+12
|
* Keep gcc -Wall happy.Guido van Rossum1996-12-051-1/+2
|
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-13/+20
|
* Rationalize MS #ifdefsGuido van Rossum1996-09-111-2/+2
|
* Call __initialize(), not __sinit() on Mac dynamic loading entry.Guido van Rossum1996-08-261-1/+1
|
* Hacks to support being a Windows DLLGuido van Rossum1996-08-211-2/+5
|
* Add #define MAC_TCL for Mac.Guido van Rossum1996-08-201-0/+4
|
* Changes for Windows NT -- this time it works, with Tcl4.1p1 (p1!!!) etc.Guido van Rossum1996-08-131-16/+28
| | | | | | - Use ckalloc(), ckfree() everywhere. - Default FREECAST to (char *). - Added comment with Tcl/Tk version info.
* Add optional casts to free() calls. (Jack)Guido van Rossum1996-08-081-5/+24
| | | | Set Tk variable argv0 to classname passed in to Tkapp_New. (Fred)
* getprogramname --> Py_GetProgramNameGuido van Rossum1996-07-311-3/+3
|
* Added CWI copyright.Guido van Rossum1996-06-261-18/+46
| | | | | | | | Updated some comments. Fixed bug in Merge() called with NULL args. Get rid of TkDefaultAppName() -- it is not used anywhere. Pass error message on when Appinit fails. Create/Delete FileHandler assume fd is a socket on Windows.
* Patch from the net for 4.1 file handler changes.Guido van Rossum1996-05-161-1/+19
|
* Add __sinit() call according to Jack.Guido van Rossum1996-05-161-0/+1
|
* Changes needed to build with Tcl/Tk beta 2!Guido van Rossum1996-02-251-16/+38
|
* Changes to make it work with Tcl/Tk beta 1.Guido van Rossum1996-02-251-33/+48
|
* get rid of bogus name for init_tkinter()Guido van Rossum1996-02-131-3/+1
|
* Initialize GUSI on the mac.Jack Jansen1995-11-141-0/+21
|
* Fix to load needed resources on a macJack Jansen1995-10-311-0/+40
|
* Renamed module tkinter to _tkinter, moved source to _tkinter.cJack Jansen1995-10-231-5/+5
|
* clear quitMainLoop when we fall through the main loopGuido van Rossum1995-09-301-0/+1
|
* Mac changesGuido van Rossum1995-09-221-4/+38
|
* use getnewargs where it makes senseGuido van Rossum1995-07-261-40/+17
|
* add casts to malloc() callsGuido van Rossum1995-03-091-2/+2
|
* use PyCallable_Check; export TK_VERSION and TCL_VERSION strings;Guido van Rossum1995-02-071-7/+19
| | | | some Tk 4.0 specific changes
* Made some more things static, and other cleanup for new naming schemeGuido van Rossum1995-01-171-1/+1
|
* cosmetic changes so these modules will work with the strict new naming schemeGuido van Rossum1995-01-101-4/+4
|
* added interface to Tk_DoOneEvent (R Lindsay Todd)Guido van Rossum1995-01-101-0/+34
|
* Another bulky set of minor changes.Guido van Rossum1995-01-021-6/+10
| | | | | Note addition of gethostbyaddr() and improved repr() for sockets, renaming of md5.md5() to md5.new(), and fixing of leaks in threads.
* added timer and file callbacks and global mainloop and quit fnsGuido van Rossum1994-11-101-2/+156
|
* * various modules: #include "Python.h" and remove most remporaryGuido van Rossum1994-09-141-28/+2
| | | | renaming hacks
* Setup.in: added tkinter; rearranged the definition of PYTHONPATH soGuido van Rossum1994-09-071-2/+3
| | | | | | | | | | | | | | that the module-specific components are in the section for that module. cursesmodule.c: patched it so it actually works. tkintermodule.c: call Py_AtExit instead of atexit(). signalmodule.c: converted to new naming style; added BGN/END SAVE around pause() call. socketmodule.c: added setblocking() after Tommy Burnette.
* * tkintermodule.c (*FileHandler): generalize to arbitrary file idsGuido van Rossum1994-08-091-10/+48
| | | | | and objects that hav a fileno() method; fix bug in FileHandler (should call XDECREF instead of DECREF)
* * tkintermodule.c: OK, I've fixed the "tty" problem. You're rightGuido van Rossum1994-08-031-14/+1
| | | | | no need for the stdin handler, a Tk_DoOneEvent(TK_DONT_WAIT) did the trick. I've included a diff to tkintermodule.c.
* * tkintermodule.cGuido van Rossum1994-07-071-5/+25
| | | | | | | (PyInit_tkinter): Only create stdin file handler when stdin is a tty. (Tkinter_Cleanup): New function. This is an exit handler that cleanup Tk.
* * tkintermodule.c (Tkapp_New): Remove #ifdef WITH_APPINIT.Guido van Rossum1994-06-271-13/+13
| | | | | | * tkintermodule.c (FileHandler): Make arg a tuple; bug found by <tnb2d@cs.virginia.edu>. Call the Python file handler function with (file, mask) argument. Fix a few of my refcnt bugs.
* Initial revisionGuido van Rossum1994-06-201-0/+1056