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
700d741a
Commit
700d741a
authored
May 13, 2014
by
doko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Issue #17756: Fix test_code test when run from the installed location.
parent
972f944f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
Lib/test/test_code_module.py
Lib/test/test_code_module.py
+1
-1
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_code_module.py
View file @
700d741a
...
...
@@ -51,7 +51,7 @@ class TestInteractiveConsole(unittest.TestCase):
self
.
infunc
.
side_effect
=
[
"undefined"
,
EOFError
(
'Finished'
)]
self
.
console
.
interact
()
for
call
in
self
.
stderr
.
method_calls
:
if
'NameError
:
'
in
''
.
join
(
call
[
1
]):
if
'NameError'
in
''
.
join
(
call
[
1
]):
break
else
:
raise
AssertionError
(
"No syntax error from console"
)
...
...
Misc/NEWS
View file @
700d741a
...
...
@@ -32,6 +32,8 @@ Library
Tests
-----
- Issue #17756: Fix test_code test when run from the installed location.
- Issue #17752: Fix distutils tests when run from the installed location.
IDLE
...
...
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