aboutsummaryrefslogtreecommitdiff
path: root/Modules/_tkinter.c
AgeCommit message (Expand)Author
2017-11-05Fix miscellaneous typos (#4275)luzpaz
2017-11-02bpo-23699: Use a macro to reduce boilerplate code in rich comparison function...stratakis
2017-10-03bpo-31675: Fix memory leaks in Tkinter's methods splitlist() and split() (#3866)Serhiy Storchaka
2017-10-03bpo-31673: Fixed typo in the name of Tkinter's method adderrorinfo(). (#3864)Serhiy Storchaka
2017-09-07bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou
2017-03-23Use NULL rather than 0. (#778)Serhiy Storchaka
2017-03-12bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485)Serhiy Storchaka
2017-02-16bpo-29548: Fix some inefficient call API usage (GH-97)INADA Naoki
2016-11-20Added the const qualifier to char* variables that refer to readonly internalSerhiy Storchaka
2016-10-28Fixed possible NULL decrefing.Serhiy Storchaka
2016-10-28Fixed possible NULL decrefing.Serhiy Storchaka
2016-09-07replace PY_SIZE_MAX with SIZE_MAXBenjamin Peterson
2016-09-05require a long long data type (closes #27961)Benjamin Peterson
2016-07-07- Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka
2016-07-07Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka
2016-06-19Use macros instead of corresponding functions (they never fail) in _tkinter.c.Serhiy Storchaka
2016-05-08Issue #23815: Fixed crashes related to directly created instances of types inSerhiy Storchaka
2016-05-08Issue #23815: Fixed crashes related to directly created instances of types inSerhiy Storchaka
2016-05-02Got rid of redundand "self" parameter declarations.Serhiy Storchaka
2015-12-25Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka
2015-05-22Issue #20035: Reimplement tkinter._fix module as a C function.Zachary Ware
2015-05-06Use specialized functions intead of Py_BuildValue() in _tkinter.Serhiy Storchaka
2015-05-06Issue #23880: Tkinter's getint() and getdouble() now support Tcl_Obj.Serhiy Storchaka
2015-05-04Issue #24001: Argument Clinic converters now use accept={type}Larry Hastings
2015-05-03Fix Windows build breakage from checkins on Issues #20148 and #20168.Larry Hastings
2015-05-03Issue #20168: Converted the _tkinter module to Argument Clinic.Serhiy Storchaka
2015-04-22Issue #16840. Turn off bignum support in tkinter with with Tcl earlier than 8...Serhiy Storchaka
2015-04-22Issue #16840. Turn off bignum support in tkinter with with Tcl earlier than 8...Serhiy Storchaka
2015-04-20Issue #16840: Turn on support of bignums only in final release of Tcl 8.5.Serhiy Storchaka
2015-04-20Issue #16840: Turn on support of bignums only in final release of Tcl 8.5.Serhiy Storchaka
2015-04-04Issue #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and alwaysSerhiy Storchaka
2015-04-04Issue #15133: _tkinter.tkapp.getboolean() now supports Tcl_Obj and alwaysSerhiy Storchaka
2015-04-02Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 andSerhiy Storchaka
2015-04-02Issue #16840: Tkinter now supports 64-bit integers added in Tcl 8.4 andSerhiy Storchaka
2015-04-02Issue #21526: Fixed support of new boolean type in Tcl 8.5.Serhiy Storchaka
2015-04-02Issue #21526: Tkinter now supports new boolean type in Tcl 8.5.Serhiy Storchaka
2015-03-23Issue #21526: Tkinter now supports new boolean type in Tcl 8.5.Serhiy Storchaka
2015-03-01Issue #20204: Added the __module__ attribute to _tkinter classes.Serhiy Storchaka
2015-03-01Issue #20204: Added the __module__ attribute to _tkinter classes.Serhiy Storchaka
2015-02-16Shoould be Py_MIN, not Py_MAX.Serhiy Storchaka
2015-02-16Issue #23450: Fixed possible integer overflows.Serhiy Storchaka
2014-09-11Closes #22336: attemptckalloc() with PyMem_Malloc() in _tkinterVictor Stinner
2014-09-11Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command withSerhiy Storchaka
2014-09-11Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command withSerhiy Storchaka
2014-09-11Issue #21951: Use attemptckalloc() instead of ckalloc() in Tkinter.Serhiy Storchaka
2014-09-11Issue #21951: Use attemptckalloc() instead of ckalloc() in Tkinter.Serhiy Storchaka
2014-09-06Issue #22215: Now ValueError is raised instead of TypeError when str or bytesSerhiy Storchaka
2014-09-04Issue #21951: Fix AsObj() of the _tkinter module: raise MemoryError on memoryVictor Stinner
2014-08-16Issue #22156: Fix some "comparison between signed and unsigned integers"Victor Stinner
2014-08-05Closes #22136: Fix MSVC compiler warnings introduced by #22085Zachary Ware