An error occurred fetching the project authors.
  1. 16 May, 2008 1 commit
  2. 06 Apr, 2003 1 commit
  3. 12 Dec, 2001 1 commit
  4. 10 Dec, 2001 1 commit
    • Guido van Rossum's avatar
      SF patch #491183 (Jeff Epler): ScrolledText.grid() doesn't work · 61d3637f
      Guido van Rossum authored
      Using grid methods on ScrolledText widgets does not
      work as expected. It either fails to pack a widget, or
      can even cause Tk to lock up.
      
      The problem is that the .grid method is being called on
      the text widget, not the frame widget. This can lead
      to the well-known lockup in Tk when a frame's children
      are managed by both the pack and grid managers. Even
      if it doesn't lock up, the frame is never placed within
      the intended widget.
      
      Program fragment:
      >>> import ScrolledText
      >>> s = ScrolledText.ScrolledText()
      >>> s.grid(row=0, column=0, rowspan=2)
      
      The following patch uses the same hack to copy the
      'grid' and 'place' geometry manager methods to the
      ScrolledText instance as is already used for the 'pack'
      manager.
      61d3637f
  5. 23 Oct, 2000 1 commit
  6. 20 Sep, 1999 1 commit
  7. 05 Dec, 1997 1 commit
  8. 12 Feb, 1997 1 commit
  9. 30 Jul, 1996 1 commit
  10. 03 Aug, 1994 1 commit
  11. 06 Jul, 1994 3 commits
  12. 20 Jun, 1994 1 commit