1. 09 Aug, 2007 1 commit
  2. 21 Jul, 2007 1 commit
  3. 05 Jul, 2007 1 commit
  4. 22 May, 2007 1 commit
  5. 12 Aug, 2006 1 commit
  6. 16 Jul, 2006 1 commit
  7. 12 Jun, 2006 1 commit
  8. 03 Jun, 2006 1 commit
    • Andrew M. Kuchling's avatar
      [Bug #1497414] _self is a reserved word in the WATCOM 10.6 C compiler. · 36f6d779
      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.)
      36f6d779
  9. 01 May, 2006 1 commit
  10. 10 Apr, 2006 1 commit
  11. 07 Mar, 2006 1 commit
  12. 27 Feb, 2006 1 commit
  13. 19 Jan, 2006 1 commit
  14. 08 Jan, 2006 1 commit
  15. 19 Dec, 2005 2 commits
  16. 10 Dec, 2005 1 commit
    • Jeremy Hylton's avatar
      Add const to several API functions that take char *. · af68c874
      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 *.
      af68c874
  17. 08 Mar, 2005 1 commit
  18. 13 Nov, 2004 1 commit
  19. 04 Aug, 2004 1 commit
  20. 03 Aug, 2004 1 commit
  21. 19 Feb, 2004 1 commit
  22. 18 Feb, 2004 1 commit
    • David Ascher's avatar
      Implementation of patch 869468 · e2b4b320
      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.
      e2b4b320
  23. 20 Nov, 2003 1 commit
  24. 03 Oct, 2003 1 commit
  25. 14 Jun, 2003 1 commit
  26. 29 May, 2003 1 commit
  27. 19 May, 2003 1 commit
  28. 09 May, 2003 1 commit
  29. 03 May, 2003 1 commit
  30. 01 May, 2003 1 commit
  31. 16 Apr, 2003 1 commit
  32. 15 Apr, 2003 1 commit
  33. 30 Mar, 2003 2 commits
  34. 03 Mar, 2003 2 commits
  35. 11 Feb, 2003 1 commit
  36. 22 Jan, 2003 1 commit
  37. 21 Jan, 2003 1 commit