Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merged revisions 68006 via svnmerge from | Martin v. Löwis | 2008-12-29 | 1 | -33/+42 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68006 | martin.v.loewis | 2008-12-29 16:51:01 +0100 (Mo, 29 Dez 2008) | 2 lines Issue #3248: Allow placing ScrolledText in a PanedWindow. ........ | ||||
* | Tkinter rename reversal: remove tkinter package, adapt imports and docs. | Georg Brandl | 2008-05-20 | 1 | -2/+2 |
| | |||||
* | Tkinter renaming reversal: move modules back in their place. | Georg Brandl | 2008-05-20 | 1 | -0/+43 |
| | |||||
* | Tkinter renaming reversal: Delete all stubs from lib-tk. | Georg Brandl | 2008-05-20 | 1 | -8/+0 |
| | |||||
* | Tkinter rename, step 2: fix imports and add stub modules. | Georg Brandl | 2008-05-16 | 1 | -0/+8 |
| | |||||
* | Step 1 of Tkinter renaming: move lib-tk modules into a new "tkinter" package. | Georg Brandl | 2008-05-16 | 1 | -43/+0 |
| | |||||
* | SF patch #701494: more apply removals | Raymond Hettinger | 2003-04-06 | 1 | -2/+2 |
| | |||||
* | Fix for SF #491953 (Andrew Dalke): ScrolledText.py has TabError | Guido van Rossum | 2001-12-12 | 1 | -3/+3 |
| | | | | Untabified. | ||||
* | SF patch #491183 (Jeff Epler): ScrolledText.grid() doesn't work | Guido van Rossum | 2001-12-10 | 1 | -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 Drake | 2000-10-23 | 1 | -22/+22 |
| | |||||
* | Peter Haight discovered that this code uses a mutable default for cnf | Guido van Rossum | 1999-09-20 | 1 | -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 also | Guido van Rossum | 1997-12-05 | 1 | -1/+1 |
| | | | | exclude "configure". | ||||
* | Put support for a cnf dictionary back in, since it is still supported | Guido van Rossum | 1997-02-12 | 1 | -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 dicts | Guido van Rossum | 1996-07-30 | 1 | -10/+8 |
| | |||||
* | Use new packing and 'name' in cnf dict | Guido van Rossum | 1994-08-03 | 1 | -3/+5 |
| | |||||
* | Totally changed, now it is actually derived from Text | Guido van Rossum | 1994-07-06 | 1 | -31/+20 |
| | | | | (This breaks something in MimeViewer.py, don't know what yet) | ||||
* | Added bind and tag_config methods; minor lay-out change | Guido van Rossum | 1994-07-06 | 1 | -2/+3 |
| | |||||
* | * ScrolledText.py: added some more methods of Text (This should | Guido van Rossum | 1994-07-06 | 1 | -0/+10 |
| | | | | really be done differently, e.g. by deriving from the Text class.) | ||||
* | Initial revision | Guido van Rossum | 1994-06-20 | 1 | -0/+35 |