Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
31b9c845
Commit
31b9c845
authored
Nov 03, 2013
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #6157: Fixed Tkinter.Text.debug(). Original patch by Guilherme Polo.
parent
8630f16e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
2 deletions
+29
-2
Lib/lib-tk/Tkinter.py
Lib/lib-tk/Tkinter.py
+3
-2
Lib/lib-tk/test/test_tkinter/test_text.py
Lib/lib-tk/test/test_tkinter/test_text.py
+11
-0
Lib/lib-tk/test/test_tkinter/test_widgets.py
Lib/lib-tk/test/test_tkinter/test_widgets.py
+13
-0
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/lib-tk/Tkinter.py
View file @
31b9c845
...
...
@@ -2908,8 +2908,9 @@ class Text(Widget, XView, YView):
def debug(self, boolean=None):
"""
Turn
on
the
internal
consistency
checks
of
the
B
-
Tree
inside
the
text
widget
according
to
BOOLEAN
.
"""
return self.tk.getboolean(self.tk.call(
self._w, 'debug', boolean))
if boolean is None:
return self.tk.call(self._w, 'debug')
self.tk.call(self._w, 'debug', boolean)
def delete(self, index1, index2=None):
"""
Delete
the
characters
between
INDEX1
and
INDEX2
(
not
included
).
"""
self.tk.call(self._w, 'delete', index1, index2)
...
...
Lib/lib-tk/test/test_tkinter/test_text.py
View file @
31b9c845
...
...
@@ -14,6 +14,17 @@ class TextTest(unittest.TestCase):
def
tearDown
(
self
):
self
.
text
.
destroy
()
def
test_debug
(
self
):
text
=
self
.
text
olddebug
=
text
.
debug
()
try
:
text
.
debug
(
0
)
self
.
assertEqual
(
text
.
debug
(),
0
)
text
.
debug
(
1
)
self
.
assertEqual
(
text
.
debug
(),
1
)
finally
:
text
.
debug
(
olddebug
)
self
.
assertEqual
(
text
.
debug
(),
olddebug
)
def
test_search
(
self
):
text
=
self
.
text
...
...
Lib/lib-tk/test/test_tkinter/test_widgets.py
View file @
31b9c845
...
...
@@ -607,6 +607,19 @@ class TextTest(AbstractWidgetTest, unittest.TestCase):
else
:
self
.
checkEnumParam
(
widget
,
'wrap'
,
'char'
,
'none'
,
'word'
)
def
test_bbox
(
self
):
widget
=
self
.
create
()
bbox
=
widget
.
bbox
(
'1.1'
)
self
.
assertEqual
(
len
(
bbox
),
4
)
for
item
in
bbox
:
self
.
assertIsInstance
(
item
,
int
)
self
.
assertIsNone
(
widget
.
bbox
(
'end'
))
self
.
assertRaises
(
Tkinter
.
TclError
,
widget
.
bbox
,
'noindex'
)
self
.
assertRaises
(
Tkinter
.
TclError
,
widget
.
bbox
,
None
)
self
.
assertRaises
(
Tkinter
.
TclError
,
widget
.
bbox
)
self
.
assertRaises
(
Tkinter
.
TclError
,
widget
.
bbox
,
'1.1'
,
'end'
)
@
add_standard_options
(
PixelSizeTests
,
StandardOptionsTests
)
class
CanvasTest
(
AbstractWidgetTest
,
unittest
.
TestCase
):
...
...
Misc/NEWS
View file @
31b9c845
...
...
@@ -12,6 +12,8 @@ Core and Builtins
Library
-------
- Issue #6157: Fixed Tkinter.Text.debug(). Original patch by Guilherme Polo.
- Issue #6160: The bbox() method of tkinter.Spinbox now returns a tuple of
integers instead of a string. Based on patch by Guilherme Polo.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment