1. 44b3b54 Remove all other uses of the C tolower()/toupper() which could break with a Turkish locale. by Antoine Pitrou · 13 years ago
  2. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  3. 99ac914 Remove an unused variable. by Brett Cannon · 14 years ago
  4. 5d64c33 Include tkinter.h only after including tk.h (or the equivalent for another platform). by Guilherme Polo · 15 years ago
  5. 41eb086 Typo fix by Guilherme Polo · 15 years ago
  6. 1972d16 Adjusted _tkinter to compile without warnings when WITH_THREAD is not by Guilherme Polo · 15 years ago
  7. 3768b2f Fixed issue #4792: Prevent a segfault in _tkinter by using the by Guilherme Polo · 15 years ago
  8. c5eba1e Enforcing Tk 8.3.1 requirement. by Guilherme Polo · 15 years ago
  9. a66cf5b Fixed issue #5122: Synchronize tk load failure check to prevent a by Guilherme Polo · 15 years ago
  10. 363161a Issue #1731706: Call Tcl_ConditionFinalize for Tcl_Conditions that will by Guilherme Polo · 15 years ago
  11. 14ff18d Partial fix to issue #1731706: memory leak in Tkapp_Call when calling by Guilherme Polo · 15 years ago
  12. 23fe2a8 Fix for issue #1581476 by Guilherme Polo · 15 years ago
  13. b3619be make _tkinter._flatten check the result of PySequence_Size for errors #3880 by Benjamin Peterson · 15 years ago
  14. e7f1403 The _tkinter module functions "createfilehandler", "deletefilehandler", by Guilherme Polo · 16 years ago
  15. 111c180 Make more symbols static. by Martin v. Löwis · 16 years ago
  16. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  17. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  18. 076d9ee Bug #1301: fixed a bad assert in _tkinter. by Guido van Rossum · 17 years ago
  19. 17cb5cf Return results from Python callbacks to Tcl as Tcl objects. by Martin v. Löwis · 17 years ago
  20. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  21. b5e81aa Backport r56875 from py3k; double LEAVE_PYTHON when AsString() fails by Guido van Rossum · 17 years ago
  22. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  23. d67a3b9 Many calls to tk.call involve an arglist containing a single tuple. by Kurt B. Kaiser · 17 years ago
  24. e2e447b Stop using METH_OLDARGS by Neal Norwitz · 17 years ago
  25. 5f17d9a Don't deref v if it's NULL. by Neal Norwitz · 18 years ago
  26. ce5b3c3 self is dereffed (and passed as first arg), so it's known to be good. by Neal Norwitz · 18 years ago
  27. 047f3c7 Fix some Py_ssize_t issues by Neal Norwitz · 18 years ago
  28. 36f6d77 [Bug #1497414] _self is a reserved word in the WATCOM 10.6 C compiler. by Andrew M. Kuchling · 18 years ago
  29. 8672519 Work around deadlock risk. Will backport. by Martin v. Löwis · 18 years ago
  30. 65c05b2 Get rid of warnings about using chars as subscripts by Neal Norwitz · 18 years ago
  31. a74a84d Coverity found refleak: need to free 'v' after calling Tkinter_Error(). by Thomas Wouters · 18 years ago
  32. 1d519e4 unconst. by Martin v. Löwis · 18 years ago
  33. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 18 years ago
  34. d948a43 Fix icc warnings: try to set TCL_UNIX_FD for #if TCL_WIN_SOCKET == TCL_UNIX_FD. res is not used, add a XXX comment by Neal Norwitz · 19 years ago
  35. 9dbc7dd Remove extra parens by Neal Norwitz · 19 years ago
  36. 30b5c5d Fix SF bug #1072182, problems with signed characters. by Neal Norwitz · 19 years ago
  37. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  38. e2713be Build with --disable-unicode again. Fixes #1158607. Will backport to 2.4. by Martin v. Löwis · 19 years ago
  39. fba7369 Patch #1050475: Fix various x86_64 build issues by Martin v. Löwis · 20 years ago
  40. 51fa3b7 Tkapp_New(): Rewrite in C so it compiles again. by Tim Peters · 20 years ago
  41. 1fa649f Patch #986929: Add support for wish -sync and -use options. by Martin v. Löwis · 20 years ago
  42. 44dbae8 Remove gcc warning from using "main". Use METH_NOARGS instead of METH_VARARGS by Neal Norwitz · 20 years ago
  43. e2b4b32 Implementation of patch 869468 by David Ascher · 20 years ago
  44. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  45. d46e684 Check for TclError when reading variables. Fixes #807314. Backported to 2.3. by Martin v. Löwis · 21 years ago
  46. d6efae5 Properly deal with tuples in Open._fixresult. Fixes bug reported in by Martin v. Löwis · 21 years ago
  47. d1c5510 Fix SF #745055, Memory leak in _tkinter.c/Tkapp_SplitList() by Neal Norwitz · 21 years ago
  48. 8fd86cc Only return objects if wantobjects is set in GetVar. by Martin v. Löwis · 21 years ago
  49. 28e9ce9 Patch #734118: Add {get|set}busywaitinterval. by Martin v. Löwis · 21 years ago
  50. dd6cd65 Implement tcl object __cmp__. by Martin v. Löwis · 21 years ago
  51. 1869ec5 Convert tcl objects to strings in getvar/setvar. Fixes #730506. by Martin v. Löwis · 21 years ago
  52. 6f29ff3 Support UCS-4 Tcl for UCS-4 Python builds. Fixes #719880. by Martin v. Löwis · 21 years ago
  53. ee24e9c Use object interface for global vars. Fixes #721171. by Martin v. Löwis · 21 years ago
  54. a965649 Wrap thread stuff in WITH_THREAD. Fixes #704641. by Martin v. Löwis · 21 years ago
  55. 52ae6f6 Fake bool API for Python 2.2. by Martin v. Löwis · 21 years ago
  56. 12e2217 Fix SF #692416, don't crash interpreter for _tkinter.deletefilehandler by Neal Norwitz · 21 years ago
  57. 7f13489 Don't crash on _tkinter.createfilehandler in non-threaded Tcl; by Martin v. Löwis · 21 years ago
  58. ec74f2f Add more missing PyErr_NoMemory() after failled memory allocs by Neal Norwitz · 21 years ago
  59. 70c3dda Convert booleans to integers in IntVar.set. Fixes #671741. by Martin v. Löwis · 21 years ago
  60. cd9a8b6 Avoid usage of PyDoc_STR in 2.2 compatibility code. by Martin v. Löwis · 21 years ago
  61. fb8595d Patch #661760: Cygwin auto-import module patch by Jason Tishler · 22 years ago
  62. 3a57d9d Fix typo. by Martin v. Löwis · 22 years ago
  63. 6a759d9 Remove appartment check from dooneevent. Fixes #660961. by Martin v. Löwis · 22 years ago
  64. 3919571 Wrap doc strings in PyDoc_STRVAR. Fix .string docstring. Provide default by Martin v. Löwis · 22 years ago
  65. 25c7b50 Convert Tcl path objects to strings. Fixes #661357. by Martin v. Löwis · 22 years ago
  66. bbe8961 Patch #660485: Cygwin _tkinter Tcl/Tk 8.3 patch by Jason Tishler · 22 years ago
  67. ba2f875 Eliminate C++ comment. by Martin v. Löwis · 22 years ago
  68. 5b177f1 Silence cast warnings for Tcl 8.3. by Martin v. Löwis · 22 years ago
  69. 5b26abb Gracefully delay runtime error up to 1s. Add .willdispatch(). by Martin v. Löwis · 22 years ago
  70. 7d13495 Always initialize objc. by Martin v. Löwis · 22 years ago
  71. b5bfb9f Support threads-enabled Tcl installations. by Martin v. Löwis · 22 years ago
  72. 33ec3ba Remove C++ comment. Silence unsigned char* cast warning. by Martin v. Löwis · 22 years ago
  73. e07e18d Decode untyped strings from UTF-8. by Martin v. Löwis · 22 years ago
  74. 4ec2e70 Avoid including tclInt.h. by Martin v. Löwis · 22 years ago
  75. 8c8aa5d Rename want_objects to wantobjects throughout, for consistency. by Martin v. Löwis · 22 years ago
  76. ffad633 Patch #518625: Return objects in Tkinter. by Martin v. Löwis · 22 years ago
  77. 3c6d6f2 Support UCS-4 builds. by Martin v. Löwis · 22 years ago
  78. 71e25a0 Eliminate constness warnings with Tcl 8.4. by Martin v. Löwis · 22 years ago
  79. 6bfa2e6 Drop support for Tk 8.0 and 8.1. by Martin v. Löwis · 22 years ago
  80. 62b1ab1 Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link by Mark Hammond · 22 years ago
  81. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  82. b5b5a26 Fix SF bug #557436, TclError is a str should be an Exception by Neal Norwitz · 22 years ago
  83. b049325 Use symbolic METH_VARARGS/METH_OLDARGS instead of 1/0 for ml_flags by Neal Norwitz · 22 years ago
  84. 84432eb Encode Unicode arguments to split/splitlist as UTF-8. Fixes #507962. by Martin v. Löwis · 22 years ago
  85. 43b936d Patch #477750: Use METH_ constants in Modules. by Martin v. Löwis · 22 years ago
  86. cb85244 Mods by Tony Lownds (patch 490100, slightly massaged by me) to make Tkinter by Jack Jansen · 23 years ago
  87. 885d457 sprintf -> PyOS_snprintf in some "obviously safe" cases. by Tim Peters · 23 years ago
  88. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  89. f249add Got rid of (hopefully) the last 68k-mac related ifdefs. by Jack Jansen · 23 years ago
  90. 84c10b1 File handlers don't work on the mac, so don't pretend they do. I guess this is a 2.1.1 candidate, if it isn't too late for that. by Jack Jansen · 23 years ago
  91. 4324aa3 Cruft cleanup: Removed the unused last_is_sticky argument from the internal by Tim Peters · 23 years ago
  92. 0295601 Do not release unallocated Tcl objects. Closes #117278 and #117167. by Martin v. Löwis · 24 years ago
  93. ada6d87 Fix for Bug #116453. by Guido van Rossum · 24 years ago
  94. 2834b97 [ Bug #113803 ] [2.0b1 NT4.0] printing non asci char causes idle to abort by Guido van Rossum · 24 years ago
  95. 98dc065 SF "bug" 115973: patches from Norman Vine so that shared libraries and by Tim Peters · 24 years ago
  96. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  97. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  98. 58d0510 ANSIfy some more forward declarations. by Thomas Wouters · 24 years ago
  99. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
  100. 9f28a03 Use PyObject_AsFileDescriptor by Andrew M. Kuchling · 24 years ago