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
e7cbd3f0
Commit
e7cbd3f0
authored
Jul 13, 2013
by
Terry Jan Reedy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #18365: 2.7 corrections so tests run
parent
d781b07e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
Lib/idlelib/idle_test/mock_tk.py
Lib/idlelib/idle_test/mock_tk.py
+1
-1
Lib/idlelib/idle_test/test_text.py
Lib/idlelib/idle_test/test_text.py
+3
-3
No files found.
Lib/idlelib/idle_test/mock_tk.py
View file @
e7cbd3f0
...
@@ -114,7 +114,7 @@ class Text(object):
...
@@ -114,7 +114,7 @@ class Text(object):
try
:
try
:
index
=
index
.
lower
()
index
=
index
.
lower
()
except
AttributeError
:
except
AttributeError
:
raise
TclError
(
'bad text index "%s"'
%
index
)
from
None
raise
TclError
(
'bad text index "%s"'
%
index
)
lastline
=
len
(
self
.
data
)
-
1
# same as number of text lines
lastline
=
len
(
self
.
data
)
-
1
# same as number of text lines
if
index
==
'insert'
:
if
index
==
'insert'
:
...
...
Lib/idlelib/idle_test/test_text.py
View file @
e7cbd3f0
# Test mock_tk.Text class against tkinter.Text class by running same tests with both.
# Test mock_tk.Text class against tkinter.Text class by running same tests with both.
import
unittest
import
unittest
from
test.support
import
requires
from
test.
test_
support
import
requires
from
_tkinter
import
TclError
from
_tkinter
import
TclError
import
t
kinter
as
tk
import
T
kinter
as
tk
class
TextTest
(
object
):
class
TextTest
(
object
):
...
@@ -214,7 +214,7 @@ class TkTextTest(TextTest, unittest.TestCase):
...
@@ -214,7 +214,7 @@ class TkTextTest(TextTest, unittest.TestCase):
@
classmethod
@
classmethod
def
setUpClass
(
cls
):
def
setUpClass
(
cls
):
requires
(
'gui'
)
requires
(
'gui'
)
from
t
kinter
import
Tk
,
Text
from
T
kinter
import
Tk
,
Text
cls
.
Text
=
Text
cls
.
Text
=
Text
cls
.
root
=
Tk
()
cls
.
root
=
Tk
()
...
...
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