diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-19 07:39:35 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-19 07:39:35 (GMT) |
commit | 1e87da16eac24f6e0fb6908906ab6400ce583fa0 (patch) | |
tree | d992030c489c74b4f385314d3fba2d1dbb675cf6 /Lib/lib-tk | |
parent | 7a15390f83c57283b44163c33bb4a80fd453526b (diff) | |
download | cpython-1e87da16eac24f6e0fb6908906ab6400ce583fa0.zip cpython-1e87da16eac24f6e0fb6908906ab6400ce583fa0.tar.gz cpython-1e87da16eac24f6e0fb6908906ab6400ce583fa0.tar.bz2 |
Remove duplication.
Diffstat (limited to 'Lib/lib-tk')
-rw-r--r-- | Lib/lib-tk/Tix.py | 6 | ||||
-rw-r--r-- | Lib/lib-tk/turtle.py | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Lib/lib-tk/Tix.py b/Lib/lib-tk/Tix.py index 210b7d2..d474235 100644 --- a/Lib/lib-tk/Tix.py +++ b/Lib/lib-tk/Tix.py @@ -1874,13 +1874,13 @@ class Grid(TixWidget, XView, YView): return self.tk.call(self, 'info', 'bbox', x, y) def move_column(self, from_, to, offset): - """Moves the the range of columns from position FROM through TO by + """Moves the range of columns from position FROM through TO by the distance indicated by OFFSET. For example, move_column(2, 4, 1) moves the columns 2,3,4 to columns 3,4,5.""" self.tk.call(self, 'move', 'column', from_, to, offset) def move_row(self, from_, to, offset): - """Moves the the range of rows from position FROM through TO by + """Moves the range of rows from position FROM through TO by the distance indicated by OFFSET. For example, move_row(2, 4, 1) moves the rows 2,3,4 to rows 3,4,5.""" self.tk.call(self, 'move', 'row', from_, to, offset) @@ -1939,7 +1939,7 @@ class Grid(TixWidget, XView, YView): pad0 pixels Specifies the paddings to the top of a row. pad1 pixels - Specifies the paddings to the the bottom of a row. + Specifies the paddings to the bottom of a row. size val Specifies the height of a row. Val may be: "auto" -- the height of the row is set the diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py index 4230d68..e78324e 100644 --- a/Lib/lib-tk/turtle.py +++ b/Lib/lib-tk/turtle.py @@ -96,7 +96,7 @@ Roughly it has the following features added: docstrings to disc, so it can serve as a template for translations. Behind the scenes there are some features included with possible -extensions in in mind. These will be commented and documented elsewhere. +extensions in mind. These will be commented and documented elsewhere. """ |