Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Closes #22336: attemptckalloc() with PyMem_Malloc() in _tkinter | Victor Stinner | 2014-09-11 | 1 | -12/+12 |
| | | | | | | The PyMem_Malloc(size) function has a well defined behaviour: if size is 0, a pointer different than NULL is returned. PyMem_Malloc() allocations are tracked by tracemalloc, attemptckalloc() allocations are not tracked. | ||||
* | Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command with | Serhiy Storchaka | 2014-09-11 | 1 | -0/+4 |
|\ | | | | | | | | | | | | | empty string or tuple argument. On some platforms Tcl memory allocator returns NULL when allocating zero-sized block of memory. | ||||
| * | Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command with | Serhiy Storchaka | 2014-09-11 | 1 | -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 Storchaka | 2014-09-11 | 1 | -10/+26 |
|\ \ | |/ | | | | | | | ckalloc() causes the Tcl interpreter to panic, attemptckalloc() returns NULL if the memory allocation fails. | ||||
| * | Issue #21951: Use attemptckalloc() instead of ckalloc() in Tkinter. | Serhiy Storchaka | 2014-09-11 | 1 | -10/+26 |
| | | | | | | | | | | ckalloc() causes the Tcl interpreter to panic, attemptckalloc() returns NULL if the memory allocation fails. | ||||
* | | Issue #22215: Now ValueError is raised instead of TypeError when str or bytes | Serhiy Storchaka | 2014-09-06 | 1 | -2/+2 |
| | | | | | | | | argument contains not permitted null character or byte. | ||||
* | | Issue #21951: Fix AsObj() of the _tkinter module: raise MemoryError on memory | Victor Stinner | 2014-09-04 | 1 | -2/+4 |
| | | | | | | | | allocation failure | ||||
* | | Issue #22156: Fix some "comparison between signed and unsigned integers" | Victor Stinner | 2014-08-15 | 1 | -2/+2 |
| | | | | | | | | compiler warnings in the Modules/ subdirectory. | ||||
* | | Closes #22136: Fix MSVC compiler warnings introduced by #22085 | Zachary Ware | 2014-08-05 | 1 | -7/+7 |
| | | |||||
* | | Issue #22085: Dropped support of Tk 8.3 in Tkinter. | Serhiy Storchaka | 2014-07-30 | 1 | -26/+13 |
| | | |||||
* | | Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk. | Serhiy Storchaka | 2014-07-30 | 1 | -2/+2 |
|\ \ | |/ | | | | | In particular this allows to initialize images from binary data. | ||||
| * | Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk. | Serhiy Storchaka | 2014-07-30 | 1 | -2/+2 |
| | | | | | | | | In particular this allows to initialize images from binary data. | ||||
* | | Call PyErr_NoMemory() when PyMem_Malloc() fails. | Serhiy Storchaka | 2014-07-14 | 1 | -1/+3 |
|\ \ | |/ | |||||
| * | Call PyErr_NoMemory() when PyMem_Malloc() fails. | Serhiy Storchaka | 2014-07-14 | 1 | -1/+3 |
| | | |||||
* | | Issue #21552: Fixed possible integer overflow of too long string lengths in | Serhiy Storchaka | 2014-05-30 | 1 | -1/+35 |
|\ \ | |/ | | | | | the tkinter module on 64-bit platforms. | ||||
| * | Issue #21552: Fixed possible integer overflow of too long string lengths in | Serhiy Storchaka | 2014-05-30 | 1 | -1/+35 |
| | | | | | | | | the tkinter module on 64-bit platforms. | ||||
* | | Issue #3015: _tkinter.create() now creates tkapp object with wantobject=1 by | Serhiy Storchaka | 2014-05-28 | 1 | -1/+1 |
| | | | | | | | | default. | ||||
* | | Issue #21525: Most Tkinter methods which accepted tuples now accept lists too. | Serhiy Storchaka | 2014-05-21 | 1 | -33/+40 |
|/ | |||||
* | Issue #20515: Fix NULL pointer dereference introduced by issue #20368 | Christian Heimes | 2014-02-04 | 1 | -0/+3 |
|\ | | | | | | | CID 1167595 | ||||
| * | Issue #20515: Fix NULL pointer dereference introduced by issue #20368 | Christian Heimes | 2014-02-04 | 1 | -0/+3 |
| | | | | | | | | CID 1167595 | ||||
* | | Issue #20368: The null character now correctly passed from Tcl to Python. | Serhiy Storchaka | 2014-02-03 | 1 | -68/+114 |
|\ \ | |/ | | | | | Improved error handling in variables-related commands. | ||||
| * | Issue #20368: The null character now correctly passed from Tcl to Python. | Serhiy Storchaka | 2014-02-03 | 1 | -68/+114 |
| | | | | | | | | Improved error handling in variables-related commands. | ||||
* | | Issue #20315: Removed support for backward compatibility with early 2.x ↵ | Serhiy Storchaka | 2014-01-20 | 1 | -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 Storchaka | 2014-01-20 | 1 | -14/+0 |
| | | | | | | | | versions. | ||||
| * | Issue #19028: Fixed tkinter.Tkapp.merge() for non-string arguments. | Serhiy Storchaka | 2013-09-23 | 1 | -12/+3 |
| | | |||||
* | | Issue #19034: repr() for tkinter.Tcl_Obj now exposes string reperesentation. | Serhiy Storchaka | 2013-09-23 | 1 | -2/+7 |
| | | |||||
* | | Issue #3015: Fixed tkinter with wantobject=False. Any Tcl command call | Serhiy Storchaka | 2013-09-20 | 1 | -4/+1 |
|\ \ | |/ | | | | | returned empty string. | ||||
| * | Issue #3015: Fixed tkinter with wantobject=False. Any Tcl command call | Serhiy Storchaka | 2013-09-20 | 1 | -4/+1 |
| | | | | | | | | returned empty string. | ||||
* | | (Merge 3.3) Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, | Victor Stinner | 2013-09-04 | 1 | -1/+1 |
|\ \ | |/ | | | | | don't cast 64-bit pointer to long (32 bits). | ||||
| * | Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don't cast | Victor Stinner | 2013-09-04 | 1 | -1/+1 |
| | | | | | | | | 64-bit pointer to long (32 bits). | ||||
* | | Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_Obj | Serhiy Storchaka | 2013-08-22 | 1 | -12/+53 |
|\ \ | |/ | | | | | | | | | argument. This is needed for support Tcl/Tk 8.6. | ||||
| * | Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_Obj | Serhiy Storchaka | 2013-08-22 | 1 | -12/+53 |
| | | | | | | | | | | | | argument. This is needed for support Tcl/Tk 8.6. | ||||
* | | Issue #17119: Fixed integer overflows when processing large strings and tuples | Serhiy Storchaka | 2013-08-21 | 1 | -6/+23 |
|\ \ | |/ | | | | | in the tkinter module. | ||||
| * | Issue #17119: Fixed integer overflows when processing large strings and tuples | Serhiy Storchaka | 2013-08-21 | 1 | -9/+30 |
| | | | | | | | | in the tkinter module. | ||||
* | | Fix refcounting issue with extension types in tkinter. | Antoine Pitrou | 2013-08-10 | 1 | -0/+9 |
| | | | | | | | | (issue #15721) | ||||
* | | Issue #18101: Tcl.split() now process strings nested in a tuple as it | Serhiy Storchaka | 2013-07-11 | 1 | -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 it | Serhiy Storchaka | 2013-07-11 | 1 | -0/+15 |
| | | | | | | | | | | | | do with byte strings. Added tests for Tcl.split() and Tcl.splitline(). | ||||
* | | Issue #13153: Tkinter functions now raise TclError instead of ValueError when | Serhiy Storchaka | 2013-02-18 | 1 | -1/+1 |
|\ \ | |/ | | | | | a string argument contains non-BMP character. | ||||
| * | Issue #13153: Tkinter functions now raise TclError instead of ValueError when | Serhiy Storchaka | 2013-02-18 | 1 | -1/+1 |
| |\ | | | | | | | | | | a string argument contains non-BMP character. | ||||
| | * | Issue #13153: Tkinter functions now raise TclError instead of ValueError when | Serhiy Storchaka | 2013-02-18 | 1 | -1/+1 |
| | | | | | | | | | | | | a string argument contains non-BMP character. | ||||
* | | | Issue #15721: apply PEP 384 Refactoring to tkinter module. | Andrew Svetlov | 2012-10-30 | 1 | -6/+1 |
| | | | |||||
* | | | Reformat _tkinter code to follow PEP7 | Andrew Svetlov | 2012-10-16 | 1 | -56/+72 |
| | | | |||||
* | | | Issue #15721: make _tkinter module pep384 compatible. | Andrew Svetlov | 2012-10-14 | 1 | -132/+142 |
| | | | |||||
* | | | Remove unused functions from _tkinter. | Andrew Svetlov | 2012-10-07 | 1 | -21/+0 |
| | | | |||||
* | | | Utilize PyModule_Add{IntConstant,StringConstant,Object} in _tkinter. | Andrew Svetlov | 2012-10-07 | 1 | -19/+19 |
| | | | |||||
* | | | Utilize Py_RETURN_NONE in _tkinter module. | Andrew Svetlov | 2012-10-07 | 1 | -26/+13 |
| | | | |||||
* | | | Issue #14446: Remove deprecated tkinter functions: Delete an unused function ↵ | Jesus Cea | 2012-10-05 | 1 | -30/+0 |
| | | | | | | | | | | | | to avoid a warning | ||||
* | | | Issue #14446: Remove deprecated tkinter functions: Delete an unused function ↵ | Jesus Cea | 2012-10-05 | 1 | -76/+0 |
| | | | | | | | | | | | | to avoid a warning | ||||
* | | | Issue #14446: Remove deprecated tkinter functions | Andrew Svetlov | 2012-10-04 | 1 | -88/+0 |
|/ / | | | | | | | Thanks to Michael Driscoll | ||||
* | | #15094: fix incorrectly placed #endif in _tkinter.c. | Andrew Svetlov | 2012-07-22 | 1 | -1/+1 |
| | | | | | | | | Patch by Serhiy Storchaka. |