summaryrefslogtreecommitdiffstats
path: root/Modules/_tkinter.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command withSerhiy Storchaka2014-09-111-0/+4
* Issue #21951: Use attemptckalloc() instead of ckalloc() in Tkinter.Serhiy Storchaka2014-09-111-12/+28
* Issue #21580: Now Tkinter correctly handles binary "data" and "maskdata"Serhiy Storchaka2014-07-311-0/+28
* Call PyErr_NoMemory() when PyMem_Malloc() fails.Serhiy Storchaka2014-07-141-1/+3
* Fixed possible integer overflow in getint, getdouble and getboolean too (issu...Serhiy Storchaka2014-05-301-0/+3
* Issue #21552: Fixed possible integer overflow of too long string lengths inSerhiy Storchaka2014-05-301-1/+32
* Issue #20368: The null character now correctly passed from Tcl to Python (inSerhiy Storchaka2014-02-031-99/+116
* Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don't castVictor Stinner2013-09-041-1/+1
* Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_ObjSerhiy Storchaka2013-08-221-12/+53
* Issue #17119: Fixed integer overflows when processing large Unicode stringsSerhiy Storchaka2013-08-211-10/+33
* Issue #18101: Tcl.split() now process Unicode strings nested in a tuple as itSerhiy Storchaka2013-07-111-0/+27
* Issue #13153: Tkinter functions now raise TclError instead of ValueError whenSerhiy Storchaka2013-02-181-2/+4
* Remove all other uses of the C tolower()/toupper() which could break with a T...Antoine Pitrou2011-10-041-2/+2
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-2102/+2102
* Remove an unused variable.Brett Cannon2010-05-031-2/+1
* Include tkinter.h only after including tk.h (or the equivalent for another pl...Guilherme Polo2009-04-051-2/+2
* Typo fixGuilherme Polo2009-03-281-1/+1
* Adjusted _tkinter to compile without warnings when WITH_THREAD is notGuilherme Polo2009-03-271-6/+29
* Fixed issue #4792: Prevent a segfault in _tkinter by using theGuilherme Polo2009-03-071-1/+1
* Enforcing Tk 8.3.1 requirement.Guilherme Polo2009-02-091-2/+2
* Fixed issue #5122: Synchronize tk load failure check to prevent aGuilherme Polo2009-02-091-26/+63
* Issue #1731706: Call Tcl_ConditionFinalize for Tcl_Conditions that willGuilherme Polo2009-02-061-17/+25
* Partial fix to issue #1731706: memory leak in Tkapp_Call when callingGuilherme Polo2009-02-061-1/+3
* Fix for issue #1581476Guilherme Polo2009-02-021-2/+1
* make _tkinter._flatten check the result of PySequence_Size for errors #3880Benjamin Peterson2009-01-301-1/+3
* The _tkinter module functions "createfilehandler", "deletefilehandler",Guilherme Polo2009-01-031-0/+36
* Make more symbols static.Martin v. Löwis2008-06-131-2/+2
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-41/+41
* Renamed PyString to PyBytesChristian Heimes2008-05-261-41/+41
* Bug #1301: fixed a bad assert in _tkinter.Guido van Rossum2008-01-031-3/+5
* Return results from Python callbacks to Tcl as Tcl objects.Martin v. Löwis2008-01-011-12/+5
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-5/+5
* Backport r56875 from py3k; double LEAVE_PYTHON when AsString() failsGuido van Rossum2007-08-091-1/+3
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-9/+7
* Many calls to tk.call involve an arglist containing a single tuple.Kurt B. Kaiser2007-07-051-0/+6
* Stop using METH_OLDARGSNeal Norwitz2007-05-221-3/+3
* Don't deref v if it's NULL.Neal Norwitz2006-08-121-2/+4
* self is dereffed (and passed as first arg), so it's known to be good.Neal Norwitz2006-07-161-2/+2
* Fix some Py_ssize_t issuesNeal Norwitz2006-06-121-2/+3
* [Bug #1497414] _self is a reserved word in the WATCOM 10.6 C compiler.Andrew M. Kuchling2006-06-031-15/+15
* Work around deadlock risk. Will backport.Martin v. Löwis2006-05-011-3/+15
* Get rid of warnings about using chars as subscriptsNeal Norwitz2006-04-101-1/+1
* Coverity found refleak: need to free 'v' after calling Tkinter_Error().Thomas Wouters2006-03-071-2/+5
* unconst.Martin v. Löwis2006-02-271-2/+2
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Fix icc warnings: try to set TCL_UNIX_FD for #if TCL_WIN_SOCKET == TCL_UNIX_F...Neal Norwitz2006-01-081-0/+11
* Remove extra parensNeal Norwitz2005-12-191-1/+1
* Fix SF bug #1072182, problems with signed characters.Neal Norwitz2005-12-191-1/+1
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-2/+2
* Build with --disable-unicode again. Fixes #1158607.Martin v. Löwis2005-03-081-1/+3