index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
_tkinter.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Include tkinter.h only after including tk.h (or the equivalent for another pl...
Guilherme Polo
2009-04-05
1
-2/+2
*
Typo fix
Guilherme Polo
2009-03-28
1
-1/+1
*
Adjusted _tkinter to compile without warnings when WITH_THREAD is not
Guilherme Polo
2009-03-27
1
-6/+29
*
Fixed issue #4792: Prevent a segfault in _tkinter by using the
Guilherme Polo
2009-03-07
1
-1/+1
*
Enforcing Tk 8.3.1 requirement.
Guilherme Polo
2009-02-09
1
-2/+2
*
Fixed issue #5122: Synchronize tk load failure check to prevent a
Guilherme Polo
2009-02-09
1
-26/+63
*
Issue #1731706: Call Tcl_ConditionFinalize for Tcl_Conditions that will
Guilherme Polo
2009-02-06
1
-17/+25
*
Partial fix to issue #1731706: memory leak in Tkapp_Call when calling
Guilherme Polo
2009-02-06
1
-1/+3
*
Fix for issue #1581476
Guilherme Polo
2009-02-02
1
-2/+1
*
make _tkinter._flatten check the result of PySequence_Size for errors #3880
Benjamin Peterson
2009-01-30
1
-1/+3
*
The _tkinter module functions "createfilehandler", "deletefilehandler",
Guilherme Polo
2009-01-03
1
-0/+36
*
Make more symbols static.
Martin v. Löwis
2008-06-13
1
-2/+2
*
This reverts r63675 based on the discussion in this thread:
Gregory P. Smith
2008-06-09
1
-41/+41
*
Renamed PyString to PyBytes
Christian Heimes
2008-05-26
1
-41/+41
*
Bug #1301: fixed a bad assert in _tkinter.
Guido van Rossum
2008-01-03
1
-3/+5
*
Return results from Python callbacks to Tcl as Tcl objects.
Martin v. Löwis
2008-01-01
1
-12/+5
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...
Christian Heimes
2007-12-19
1
-5/+5
*
Backport r56875 from py3k; double LEAVE_PYTHON when AsString() fails
Guido van Rossum
2007-08-09
1
-1/+3
*
PEP 3123: Provide forward compatibility with Python 3.0, while keeping
Martin v. Löwis
2007-07-21
1
-9/+7
*
Many calls to tk.call involve an arglist containing a single tuple.
Kurt B. Kaiser
2007-07-05
1
-0/+6
*
Stop using METH_OLDARGS
Neal Norwitz
2007-05-22
1
-3/+3
*
Don't deref v if it's NULL.
Neal Norwitz
2006-08-12
1
-2/+4
*
self is dereffed (and passed as first arg), so it's known to be good.
Neal Norwitz
2006-07-16
1
-2/+2
*
Fix some Py_ssize_t issues
Neal Norwitz
2006-06-12
1
-2/+3
*
[Bug #1497414] _self is a reserved word in the WATCOM 10.6 C compiler.
Andrew M. Kuchling
2006-06-03
1
-15/+15
*
Work around deadlock risk. Will backport.
Martin v. Löwis
2006-05-01
1
-3/+15
*
Get rid of warnings about using chars as subscripts
Neal Norwitz
2006-04-10
1
-1/+1
*
Coverity found refleak: need to free 'v' after calling Tkinter_Error().
Thomas Wouters
2006-03-07
1
-2/+5
*
unconst.
Martin v. Löwis
2006-02-27
1
-2/+2
*
Check return result from Py_InitModule*(). This API can fail.
Neal Norwitz
2006-01-19
1
-0/+2
*
Fix icc warnings: try to set TCL_UNIX_FD for #if TCL_WIN_SOCKET == TCL_UNIX_F...
Neal Norwitz
2006-01-08
1
-0/+11
*
Remove extra parens
Neal Norwitz
2005-12-19
1
-1/+1
*
Fix SF bug #1072182, problems with signed characters.
Neal Norwitz
2005-12-19
1
-1/+1
*
Add const to several API functions that take char *.
Jeremy Hylton
2005-12-10
1
-2/+2
*
Build with --disable-unicode again. Fixes #1158607.
Martin v. Löwis
2005-03-08
1
-1/+3
*
Patch #1050475: Fix various x86_64 build issues
Martin v. Löwis
2004-11-13
1
-2/+2
*
Tkapp_New(): Rewrite in C so it compiles again.
Tim Peters
2004-08-04
1
-1/+4
*
Patch #986929: Add support for wish -sync and -use options.
Martin v. Löwis
2004-08-03
1
-4/+37
*
Remove gcc warning from using "main". Use METH_NOARGS instead of METH_VARARGS
Neal Norwitz
2004-02-19
1
-5/+3
*
Implementation of patch 869468
David Ascher
2004-02-18
1
-9/+53
*
Getting rid of all the code inside #ifdef macintosh too.
Jack Jansen
2003-11-20
1
-150/+1
*
Check for TclError when reading variables. Fixes #807314.
Martin v. Löwis
2003-10-03
1
-5/+9
*
Properly deal with tuples in Open._fixresult. Fixes bug reported in
Martin v. Löwis
2003-06-14
1
-2/+4
*
Fix SF #745055, Memory leak in _tkinter.c/Tkapp_SplitList()
Neal Norwitz
2003-05-29
1
-3/+10
*
Only return objects if wantobjects is set in GetVar.
Martin v. Löwis
2003-05-19
1
-1/+6
*
Patch #734118: Add {get|set}busywaitinterval.
Martin v. Löwis
2003-05-09
1
-2/+44
*
Implement tcl object __cmp__.
Martin v. Löwis
2003-05-03
1
-1/+12
*
Convert tcl objects to strings in getvar/setvar. Fixes #730506.
Martin v. Löwis
2003-05-01
1
-2/+26
*
Support UCS-4 Tcl for UCS-4 Python builds. Fixes #719880.
Martin v. Löwis
2003-04-16
1
-4/+8
*
Use object interface for global vars. Fixes #721171.
Martin v. Löwis
2003-04-15
1
-127/+94
[next]