1. 10 Ara, 2001 7 kayıt (commit)
    • Guido van Rossum's avatar
      SF patch #491183 (Jeff Epler): ScrolledText.grid() doesn't work · 61d3637f
      Guido van Rossum yazdı
      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
    • Michael W. Hudson's avatar
      Fix for · fb173cd4
      Michael W. Hudson yazdı
      [ #409430 ] pydoc install broken
      fb173cd4
    • Jack Jansen's avatar
      The new menu initialization code would also add the SIOUX menus if a (frozen)… · 52306a78
      Jack Jansen yazdı
      The new menu initialization code would also add the SIOUX menus if a (frozen) Python program had installed its own menubar previously. We now guard against this, with a bit of a hack: FrameWork uses the same Menu ID as Sioux, and the init code checks that the text in the menu is "About SIOUX" before replacing it.
      52306a78
    • Guido van Rossum's avatar
      New fodder. · 1d961f5e
      Guido van Rossum yazdı
      1d961f5e
    • Guido van Rossum's avatar
      SF patch #491049 (David Jacobs): Small PyString_FromString optimization · 169192e8
      Guido van Rossum yazdı
      PyString_FromString():
        Since the length of the string is already being stored in size,
        changed the strcpy() to a memcpy() for a small speed improvement.
      169192e8
    • Michael W. Hudson's avatar
      Fix for · 49bdaede
      Michael W. Hudson yazdı
      [ #477371 ] build_scripts can use wrong #! line
      
      scripts now get "built" into a directory
      
      build/scripts-$(PYTHON_VERSION)/
      49bdaede
    • Jeremy Hylton's avatar
      2990640d
  2. 09 Ara, 2001 10 kayıt (commit)
  3. 08 Ara, 2001 9 kayıt (commit)
  4. 07 Ara, 2001 14 kayıt (commit)