summaryrefslogtreecommitdiffstats
path: root/Modules/_tkinter.c
Commit message (Collapse)AuthorAgeFilesLines
* Issue #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and alwaysSerhiy Storchaka2015-04-041-9/+14
| | | | | returns bool. tkinter.BooleanVar now validates input values (accepted bool, int, str, and Tcl_Obj). tkinter.BooleanVar.get() now always returns bool.
* Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 andSerhiy Storchaka2015-04-021-16/+206
| | | | arbitrary precision integers added in Tcl 8.5.
* Issue #21526: Tkinter now supports new boolean type in Tcl 8.5.Serhiy Storchaka2015-04-021-15/+34
|
* Issue #20204: Added the __module__ attribute to _tkinter classes.Serhiy Storchaka2015-03-011-2/+2
|
* Shoould be Py_MIN, not Py_MAX.Serhiy Storchaka2015-02-161-1/+1
|
* Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command withSerhiy Storchaka2014-09-111-0/+4
| | | | | | | empty string or tuple argument. On some platforms Tcl memory allocator returns NULL when allocating zero-sized block of memory.
* Issue #21951: Use attemptckalloc() instead of ckalloc() in Tkinter.Serhiy Storchaka2014-09-111-10/+26
| | | | | ckalloc() causes the Tcl interpreter to panic, attemptckalloc() returns NULL if the memory allocation fails.
* Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk.Serhiy Storchaka2014-07-301-2/+2
| | | | In particular this allows to initialize images from binary data.
* Call PyErr_NoMemory() when PyMem_Malloc() fails.Serhiy Storchaka2014-07-141-1/+3
|
* Issue #21552: Fixed possible integer overflow of too long string lengths inSerhiy Storchaka2014-05-301-1/+35
| | | | the tkinter module on 64-bit platforms.
* Issue #20515: Fix NULL pointer dereference introduced by issue #20368Christian Heimes2014-02-041-0/+3
|\ | | | | | | CID 1167595
| * Issue #20515: Fix NULL pointer dereference introduced by issue #20368Christian Heimes2014-02-041-0/+3
| | | | | | | | CID 1167595
* | Issue #20368: The null character now correctly passed from Tcl to Python.Serhiy Storchaka2014-02-031-68/+114
|\ \ | |/ | | | | Improved error handling in variables-related commands.
| * Issue #20368: The null character now correctly passed from Tcl to Python.Serhiy Storchaka2014-02-031-68/+114
| | | | | | | | Improved error handling in variables-related commands.
* | Issue #20315: Removed support for backward compatibility with early 2.x ↵Serhiy Storchaka2014-01-201-14/+0
|\ \ | |/ | | | | | | | | | | versions. Removed backward compatibility alias curses.window.nooutrefresh which should be removed in 2.3.
| * Issue #20315: Removed support for backward compatibility with early 2.x ↵Serhiy Storchaka2014-01-201-14/+0
| | | | | | | | versions.
| * Issue #19028: Fixed tkinter.Tkapp.merge() for non-string arguments.Serhiy Storchaka2013-09-231-12/+3
| |
* | Issue #19034: repr() for tkinter.Tcl_Obj now exposes string reperesentation.Serhiy Storchaka2013-09-231-2/+7
| |
* | Issue #3015: Fixed tkinter with wantobject=False. Any Tcl command callSerhiy Storchaka2013-09-201-4/+1
|\ \ | |/ | | | | returned empty string.
| * Issue #3015: Fixed tkinter with wantobject=False. Any Tcl command callSerhiy Storchaka2013-09-201-4/+1
| | | | | | | | returned empty string.
* | (Merge 3.3) Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit,Victor Stinner2013-09-041-1/+1
|\ \ | |/ | | | | don't cast 64-bit pointer to long (32 bits).
| * Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don't castVictor Stinner2013-09-041-1/+1
| | | | | | | | 64-bit pointer to long (32 bits).
* | Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_ObjSerhiy Storchaka2013-08-221-12/+53
|\ \ | |/ | | | | | | | | argument. This is needed for support Tcl/Tk 8.6.
| * Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_ObjSerhiy Storchaka2013-08-221-12/+53
| | | | | | | | | | | | argument. This is needed for support Tcl/Tk 8.6.
* | Issue #17119: Fixed integer overflows when processing large strings and tuplesSerhiy Storchaka2013-08-211-6/+23
|\ \ | |/ | | | | in the tkinter module.
| * Issue #17119: Fixed integer overflows when processing large strings and tuplesSerhiy Storchaka2013-08-211-9/+30
| | | | | | | | in the tkinter module.
* | Fix refcounting issue with extension types in tkinter.Antoine Pitrou2013-08-101-0/+9
| | | | | | | | (issue #15721)
* | Issue #18101: Tcl.split() now process strings nested in a tuple as itSerhiy Storchaka2013-07-111-0/+15
|\ \ | |/ | | | | | | | | do with byte strings. Added tests for Tcl.split() and Tcl.splitline().
| * Issue #18101: Tcl.split() now process strings nested in a tuple as itSerhiy Storchaka2013-07-111-0/+15
| | | | | | | | | | | | do with byte strings. Added tests for Tcl.split() and Tcl.splitline().
* | Issue #13153: Tkinter functions now raise TclError instead of ValueError whenSerhiy Storchaka2013-02-181-1/+1
|\ \ | |/ | | | | a string argument contains non-BMP character.
| * Issue #13153: Tkinter functions now raise TclError instead of ValueError whenSerhiy Storchaka2013-02-181-1/+1
| |\ | | | | | | | | | a string argument contains non-BMP character.
| | * Issue #13153: Tkinter functions now raise TclError instead of ValueError whenSerhiy Storchaka2013-02-181-1/+1
| | | | | | | | | | | | a string argument contains non-BMP character.
* | | Issue #15721: apply PEP 384 Refactoring to tkinter module.Andrew Svetlov2012-10-301-6/+1
| | |
* | | Reformat _tkinter code to follow PEP7Andrew Svetlov2012-10-161-56/+72
| | |
* | | Issue #15721: make _tkinter module pep384 compatible.Andrew Svetlov2012-10-141-132/+142
| | |
* | | Remove unused functions from _tkinter.Andrew Svetlov2012-10-071-21/+0
| | |
* | | Utilize PyModule_Add{IntConstant,StringConstant,Object} in _tkinter.Andrew Svetlov2012-10-071-19/+19
| | |
* | | Utilize Py_RETURN_NONE in _tkinter module.Andrew Svetlov2012-10-071-26/+13
| | |
* | | Issue #14446: Remove deprecated tkinter functions: Delete an unused function ↵Jesus Cea2012-10-051-30/+0
| | | | | | | | | | | | to avoid a warning
* | | Issue #14446: Remove deprecated tkinter functions: Delete an unused function ↵Jesus Cea2012-10-051-76/+0
| | | | | | | | | | | | to avoid a warning
* | | Issue #14446: Remove deprecated tkinter functionsAndrew Svetlov2012-10-041-88/+0
|/ / | | | | | | Thanks to Michael Driscoll
* | #15094: fix incorrectly placed #endif in _tkinter.c.Andrew Svetlov2012-07-221-1/+1
| | | | | | | | Patch by Serhiy Storchaka.
* | MERGE: Closes #15396: memory leak in tkinterJesus Cea2012-07-191-1/+3
|\ \ | |/
| * Closes #15396: memory leak in tkinterJesus Cea2012-07-191-1/+3
| |
* | fix issue #5136: deprecate old unused functions from tkinter.Andrew Svetlov2012-03-311-1/+18
| | | | | | | | These functions are not documnted, so no documentation update.
* | Revert the patch for issue 3835 because failed on Windows buildbotAndrew Svetlov2012-03-141-7/+0
| | | | | | | | Windows build is compiled with no-threaded tcl/tk by default
* | Issue #3835: Refuse to use unthreaded Tcl in threaded Python.Martin v. Löwis2012-03-131-0/+7
| | | | | | | | Patch by Guilherme Polo and Andrew Svetlov.
* | Issue #12342: Fix compilation on Mac OS XVictor Stinner2011-11-041-1/+1
| |
* | (Merge 3.2) Issue #12342: Improve _tkinter error message on unencodable ↵Victor Stinner2011-11-031-2/+4
|\ \ | |/ | | | | character
| * Issue #12342: Improve _tkinter error message on unencodable characterVictor Stinner2011-11-031-2/+4
| |