- 09 Aug, 2007 1 commit
-
-
Guido van Rossum authored
in PythonCmd().
-
- 21 Jul, 2007 1 commit
-
-
Martin v. Löwis authored
backwards compatibility. Add Py_Refcnt, Py_Type, Py_Size, and PyVarObject_HEAD_INIT.
-
- 05 Jul, 2007 1 commit
-
-
Kurt B. Kaiser authored
Calls using METH_OLDARGS unpack this tuple; calls using METH_VARARG don't. Tcl's concatenation of args was affected; IDLE doesn't start. Modify Tkapp_Call() to unpack single tuple arglists. Bug 1733943 Ref http://mail.python.org/pipermail/python-checkins/2007-May/060454.html
-
- 22 May, 2007 1 commit
-
-
Neal Norwitz authored
-
- 12 Aug, 2006 1 commit
-
-
Neal Norwitz authored
Klocwork #214
-
- 16 Jul, 2006 1 commit
-
-
Neal Norwitz authored
func is returned from PyArg_ParseTuple and also dereffed. Reported by Klocwork, #30 (self one at least).
-
- 12 Jun, 2006 1 commit
-
-
Neal Norwitz authored
-
- 03 Jun, 2006 1 commit
-
-
Andrew M. Kuchling authored
Fix by renaming the variable. In a different module, Neal fixed it by renaming _self to self. There's already a variable named 'self' here, so I used selfptr. (I'm committing this on a Mac without Tk, but it's a simple search-and-replace. <crosses fingers>, so I'll watch the buildbots and see what happens.)
-
- 01 May, 2006 1 commit
-
-
Martin v. Löwis authored
-
- 10 Apr, 2006 1 commit
-
-
Neal Norwitz authored
on Alpha (and possibly other platforms) by using Py_CHARMASK().
-
- 07 Mar, 2006 1 commit
-
-
Thomas Wouters authored
Will backport to release24.
-
- 27 Feb, 2006 1 commit
-
-
Martin v. Löwis authored
-
- 19 Jan, 2006 1 commit
-
-
Neal Norwitz authored
Probably should be backported.
-
- 08 Jan, 2006 1 commit
-
-
Neal Norwitz authored
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
-
- 19 Dec, 2005 2 commits
-
-
Neal Norwitz authored
-
Neal Norwitz authored
Most of these can be backported.
-
- 10 Dec, 2005 1 commit
-
-
Jeremy Hylton authored
In C++, it's an error to pass a string literal to a char* function without a const_cast(). Rather than require every C++ extension module to put a cast around string literals, fix the API to state the const-ness. I focused on parts of the API where people usually pass literals: PyArg_ParseTuple() and friends, Py_BuildValue(), PyMethodDef, the type slots, etc. Predictably, there were a large set of functions that needed to be fixed as a result of these changes. The most pervasive change was to make the keyword args list passed to PyArg_ParseTupleAndKewords() to be a const char *kwlist[]. One cast was required as a result of the changes: A type object mallocs the memory for its tp_doc slot and later frees it. PyTypeObject says that tp_doc is const char *; but if the type was created by type_new(), we know it is safe to cast to char *.
-
- 08 Mar, 2005 1 commit
-
-
Martin v. Löwis authored
Will backport to 2.4.
-
- 13 Nov, 2004 1 commit
-
-
Martin v. Löwis authored
regrtest.py: skip rgbimg and imageop as they are not built on 64-bit systems. _tkinter.c: replace %.8x with %p for printing pointers. setup.py: add lib64 into the library directories.
-
- 04 Aug, 2004 1 commit
-
-
Tim Peters authored
-
- 03 Aug, 2004 1 commit
-
-
Martin v. Löwis authored
-
- 19 Feb, 2004 1 commit
-
-
Neal Norwitz authored
-
- 18 Feb, 2004 1 commit
-
-
David Ascher authored
Allow the user to create Tkinter.Tcl objects which are just like Tkinter.Tk objects except that they do not initialize Tk. This is useful in circumstances where the script is being run on machines that do not have an X server running -- in those cases, Tk initialization fails, even if no window is ever created. Includes documentation change and tests. Tested on Linux, Solaris and Windows. Reviewed by Martin von Loewis.
-
- 20 Nov, 2003 1 commit
-
-
Jack Jansen authored
-
- 03 Oct, 2003 1 commit
-
-
Martin v. Löwis authored
Backported to 2.3.
-
- 14 Jun, 2003 1 commit
-
-
Martin v. Löwis authored
follow-up to #621891.
-
- 29 May, 2003 1 commit
-
-
Neal Norwitz authored
Also fix a memory leak in Tkapp_Split. This needs to be backported. I'll leave it up to Barry whether this is for 2.2.3 or 2.2.4.
-
- 19 May, 2003 1 commit
-
-
Martin v. Löwis authored
-
- 09 May, 2003 1 commit
-
-
Martin v. Löwis authored
-
- 03 May, 2003 1 commit
-
-
Martin v. Löwis authored
-
- 01 May, 2003 1 commit
-
-
Martin v. Löwis authored
-
- 16 Apr, 2003 1 commit
-
-
Martin v. Löwis authored
-
- 15 Apr, 2003 1 commit
-
-
Martin v. Löwis authored
Also move complete processing of get/set/delvar calls to target thread.
-
- 30 Mar, 2003 2 commits
-
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
- 03 Mar, 2003 2 commits
-
-
Neal Norwitz authored
in addition to createfilehandler and creaetetimerhandler.
-
Martin v. Löwis authored
disable this function in threaded Tcl. Likewise for creaetetimerhandler. Fixes #692416.
-
- 11 Feb, 2003 1 commit
-
-
Neal Norwitz authored
-
- 22 Jan, 2003 1 commit
-
-
Martin v. Löwis authored
Return booleans from _tkinter.getboolean. Convert booleans to Tcl booleans in AsObj.
-
- 21 Jan, 2003 1 commit
-
-
Martin v. Löwis authored
-