Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Fixed possible NULL decrefing. | Serhiy Storchaka | 2016-10-28 | 1 | -1/+1 | |
| | | ||||||
* | | replace PY_SIZE_MAX with SIZE_MAX | Benjamin Peterson | 2016-09-07 | 1 | -1/+1 | |
| | | ||||||
* | | require a long long data type (closes #27961) | Benjamin Peterson | 2016-09-06 | 1 | -2/+0 | |
| | | ||||||
* | | - Issue #27332: Fixed the type of the first argument of module-level functions | Serhiy Storchaka | 2016-07-07 | 1 | -8/+8 | |
|\ \ | |/ | | | | | generated by Argument Clinic. Patch by Petr Viktorin. | |||||
| * | Issue #27332: Fixed the type of the first argument of module-level functions | Serhiy Storchaka | 2016-07-07 | 1 | -8/+8 | |
| | | | | | | | | generated by Argument Clinic. Patch by Petr Viktorin. | |||||
* | | Use macros instead of corresponding functions (they never fail) in _tkinter.c. | Serhiy Storchaka | 2016-06-19 | 1 | -22/+26 | |
| | | ||||||
* | | Issue #23815: Fixed crashes related to directly created instances of types in | Serhiy Storchaka | 2016-05-08 | 1 | -0/+3 | |
|\ \ | |/ | | | | | _tkinter and curses.panel modules. | |||||
| * | Issue #23815: Fixed crashes related to directly created instances of types in | Serhiy Storchaka | 2016-05-08 | 1 | -0/+3 | |
| | | | | | | | | _tkinter and curses.panel modules. | |||||
* | | Got rid of redundand "self" parameter declarations. | Serhiy Storchaka | 2016-05-02 | 1 | -12/+5 | |
| | | | | | | | | Argument Clinic is now able to infer all needed information. | |||||
* | | Issue #25923: Added more const qualifiers to signatures of static and ↵ | Serhiy Storchaka | 2015-12-25 | 1 | -4/+4 | |
|/ | | | | private functions. | |||||
* | Issue #20035: Reimplement tkinter._fix module as a C function. | Zachary Ware | 2015-05-22 | 1 | -1/+118 | |
| | | | | | The new private C function makes no permanent changes to the environment and is #ifdef'd out on non-Windows platforms. | |||||
* | Use specialized functions intead of Py_BuildValue() in _tkinter. | Serhiy Storchaka | 2015-05-06 | 1 | -4/+4 | |
| | ||||||
* | Issue #23880: Tkinter's getint() and getdouble() now support Tcl_Obj. | Serhiy Storchaka | 2015-05-06 | 1 | -7/+25 | |
| | | | | Tkinter's getdouble() now supports any numbers (in particular int). | |||||
* | Issue #24001: Argument Clinic converters now use accept={type} | Larry Hastings | 2015-05-04 | 1 | -3/+3 | |
| | | | | instead of types={'type'} to specify the types the converter accepts. | |||||
* | Fix Windows build breakage from checkins on Issues #20148 and #20168. | Larry Hastings | 2015-05-03 | 1 | -38/+33 | |
| | ||||||
* | Issue #20168: Converted the _tkinter module to Argument Clinic. | Serhiy Storchaka | 2015-05-03 | 1 | -246/+417 | |
| | ||||||
* | Issue #16840. Turn off bignum support in tkinter with with Tcl earlier than ↵ | Serhiy Storchaka | 2015-04-22 | 1 | -3/+4 | |
|\ | | | | | | | | | | | | | 8.5.8 (tclTomMath.h was broken) and non-final Tcl 8.6. Removed TK_VERSION_HEX. | |||||
| * | Issue #16840. Turn off bignum support in tkinter with with Tcl earlier than ↵ | Serhiy Storchaka | 2015-04-22 | 1 | -3/+4 | |
| | | | | | | | | | | | | 8.5.8 (tclTomMath.h was broken) and non-final Tcl 8.6. | |||||
* | | Issue #16840: Turn on support of bignums only in final release of Tcl 8.5. | Serhiy Storchaka | 2015-04-20 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | Issue #16840: Turn on support of bignums only in final release of Tcl 8.5. | Serhiy Storchaka | 2015-04-20 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and always | Serhiy Storchaka | 2015-04-04 | 1 | -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 #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and always | Serhiy Storchaka | 2015-04-04 | 1 | -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 and | Serhiy Storchaka | 2015-04-02 | 1 | -16/+193 | |
|\ \ | |/ | | | | | arbitrary precision integers added in Tcl 8.5. | |||||
| * | Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 and | Serhiy Storchaka | 2015-04-02 | 1 | -16/+206 | |
| | | | | | | | | arbitrary precision integers added in Tcl 8.5. | |||||
* | | Issue #21526: Fixed support of new boolean type in Tcl 8.5. | Serhiy Storchaka | 2015-04-02 | 1 | -4/+19 | |
|\ \ | |/ | ||||||
| * | Issue #21526: Tkinter now supports new boolean type in Tcl 8.5. | Serhiy Storchaka | 2015-04-02 | 1 | -15/+34 | |
| | | ||||||
* | | Issue #21526: Tkinter now supports new boolean type in Tcl 8.5. | Serhiy Storchaka | 2015-03-22 | 1 | -8/+12 | |
| | | ||||||
* | | Issue #20204: Added the __module__ attribute to _tkinter classes. | Serhiy Storchaka | 2015-03-01 | 1 | -2/+2 | |
|\ \ | |/ | ||||||
| * | Issue #20204: Added the __module__ attribute to _tkinter classes. | Serhiy Storchaka | 2015-03-01 | 1 | -2/+2 | |
| | | ||||||
| * | Shoould be Py_MIN, not Py_MAX. | Serhiy Storchaka | 2015-02-16 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #23450: Fixed possible integer overflows. | Serhiy Storchaka | 2015-02-16 | 1 | -20/+25 | |
| | | ||||||
* | | 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 |