1. 19 Ock, 1998 7 kayıt (commit)
  2. 14 Ock, 1998 3 kayıt (commit)
  3. 13 Ock, 1998 1 kayıt (commit)
  4. 12 Ock, 1998 1 kayıt (commit)
    • Guido van Rossum's avatar
      Fix two bugs: · 2b2b3f9b
      Guido van Rossum yazdı
      (1) maxsplit was ignored in split().
      
      (2) groups() would return a string instead of a singleton tuple when
      there was only one group.
      2b2b3f9b
  5. 31 Ara, 1997 1 kayıt (commit)
  6. 30 Ara, 1997 5 kayıt (commit)
  7. 29 Ara, 1997 4 kayıt (commit)
    • Guido van Rossum's avatar
      Moved things around a bit in interact(), so outout is processed before · 5baf4bc9
      Guido van Rossum yazdı
      input.  When an EOF is read, break out of the loop instead of (by
      default) writing an empty line (which doesn't do much good).  Don't
      close self when falling through the loop.
      5baf4bc9
    • Guido van Rossum's avatar
      Fixed several bugs reported by Greg McFarmane: · 9fd41e36
      Guido van Rossum yazdı
       *  The invoke methods of the three Tkinter widgets Button,
          Checkbutton and Radiobutton should return the value returned by
          the callback, (like the Menu widget does):
      
      	def invoke(self):
      	    return self.tk.call(self._w, 'invoke')
      
       *  The select_from method of the Canvas widget should use 'from', not
          'set':
      
      	def select_from(self, tagOrId, index):
      	    self.tk.call(self._w, 'select', 'from', tagOrId, index)
      
          Currently, if you use select_from, you get the error message:
       'TclError: bad select option "set": must be adjust, clear, from, item, or to'
      
       *  The 'entrycget' and 'type' methods of the Tk menu widget are
          missing from Tkinter.
      
       *  There is a bug in grid_columnconfigure and grid_rowconfigure.  For
          example, this should return the current value of the 'minsize'
          option for column 0:
      
      	f.grid_columnconfigure(0, 'minsize')
      
          Instead it returns the same as:
      
      	f.grid_columnconfigure(0)
      
          I suggest that the hint given in the comment in the
          Tkinter.Misc.configure method should be followed - "ought to
          generalize this so tag_config etc.  can use it".  Repeating the
          same configure code several times in Tkinter is inviting errors.
          [I did not follow this advice --G]
      
       *  The grid_slaves method should handle options.  Currently, to pass
          options to the grid_slaves method, you have to do something like:
      
      	grid_slaves('-row', 1)
      9fd41e36
    • Guido van Rossum's avatar
      Minor editing corrections. · 23e21e7c
      Guido van Rossum yazdı
      23e21e7c
    • Guido van Rossum's avatar
      Added doc string, provided by Charles Waldman (with some reformatting · 2003204b
      Guido van Rossum yazdı
      and a little editing my me).
      2003204b
  8. 28 Ara, 1997 2 kayıt (commit)
  9. 27 Ara, 1997 1 kayıt (commit)
  10. 24 Ara, 1997 3 kayıt (commit)
  11. 19 Ara, 1997 1 kayıt (commit)
  12. 18 Ara, 1997 1 kayıt (commit)
  13. 16 Ara, 1997 2 kayıt (commit)
  14. 15 Ara, 1997 4 kayıt (commit)
  15. 12 Ara, 1997 1 kayıt (commit)
  16. 11 Ara, 1997 3 kayıt (commit)