summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk/ScrolledText.py
Commit message (Collapse)AuthorAgeFilesLines
* Tkinter move, part 1: move modules.Georg Brandl2008-05-171-43/+0
|
* Merged revisions 56265-56300 via svnmerge fromGuido van Rossum2007-07-121-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/p3yk ........ r56274 | georg.brandl | 2007-07-11 08:10:46 -0700 (Wed, 11 Jul 2007) | 2 lines Fix #1751965, typo in isinstance. ........
* Merged revisions 55795-55816 via svnmerge fromGuido van Rossum2007-06-071-1/+1
| | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/p3yk ........ r55797 | neal.norwitz | 2007-06-07 00:00:57 -0700 (Thu, 07 Jun 2007) | 3 lines Get rid of some remnants of classic classes. types.ClassType == type. Also get rid of almost all uses of the types module and use the builtin name. ........ r55798 | neal.norwitz | 2007-06-07 00:12:36 -0700 (Thu, 07 Jun 2007) | 1 line Remove a use of types, verify commit hook works ........ r55809 | guido.van.rossum | 2007-06-07 11:11:29 -0700 (Thu, 07 Jun 2007) | 2 lines Fix syntax error introduced by Neal in last checkin. ........
* SF patch #701494: more apply removalsRaymond Hettinger2003-04-061-2/+2
|
* Fix for SF #491953 (Andrew Dalke): ScrolledText.py has TabErrorGuido van Rossum2001-12-121-3/+3
| | | | Untabified.
* SF patch #491183 (Jeff Epler): ScrolledText.grid() doesn't workGuido van Rossum2001-12-101-2/+6
| | | | | | | | | | | | | | | | | | | | | | | 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.
* Make reindent.py happy (convert everything to 4-space indents!).Fred Drake2000-10-231-22/+22
|
* Peter Haight discovered that this code uses a mutable default for cnfGuido van Rossum1999-09-201-1/+3
| | | | | and then (under certain circumstances) can clobber the default! He also submitted this patch as PR#82.
* Fix the exclusion of "config" in the methods copied from Pack to alsoGuido van Rossum1997-12-051-1/+1
| | | | exclude "configure".
* Put support for a cnf dictionary back in, since it is still supportedGuido van Rossum1997-02-121-1/+3
| | | | | by all true Tkinter widgets. (Not that I *like* this module -- it stinks, but until I have something better, I can't nuke it.)
* Change to use keyword args instead of dictsGuido van Rossum1996-07-301-10/+8
|
* Use new packing and 'name' in cnf dictGuido van Rossum1994-08-031-3/+5
|
* Totally changed, now it is actually derived from TextGuido van Rossum1994-07-061-31/+20
| | | | (This breaks something in MimeViewer.py, don't know what yet)
* Added bind and tag_config methods; minor lay-out changeGuido van Rossum1994-07-061-2/+3
|
* * ScrolledText.py: added some more methods of Text (This shouldGuido van Rossum1994-07-061-0/+10
| | | | really be done differently, e.g. by deriving from the Text class.)
* Initial revisionGuido van Rossum1994-06-201-0/+35