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
987831c9
Commit
987831c9
authored
May 13, 2014
by
doko@ubuntu.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge from 3.4:
- Issue #17756: Fix test_code test when run from the installed location.
parents
43e3d940
15bec9cb
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 @
987831c9
...
...
@@ -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 @
987831c9
...
...
@@ -456,6 +456,8 @@ Documentation
Tests
-----
-
Issue
#
17756
:
Fix
test_code
test
when
run
from
the
installed
location
.
-
Issue
#
17752
:
Fix
distutils
tests
when
run
from
the
installed
location
.
-
Issue
#
18604
:
Consolidated
checks
for
GUI
availability
.
All
platforms
now
...
...
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