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
10ac77d2
Commit
10ac77d2
authored
Apr 19, 2012
by
Nick Coghlan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Close #14032: fix incorrect variable reference in test_cmd_line_script
parent
0780b6bc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
Lib/test/test_cmd_line_script.py
Lib/test/test_cmd_line_script.py
+1
-1
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_cmd_line_script.py
View file @
10ac77d2
...
...
@@ -242,7 +242,7 @@ class CmdLineTest(unittest.TestCase):
script_name
=
_make_test_script
(
pkg_dir
,
'script'
)
rc
,
out
,
err
=
assert_python_ok
(
'-m'
,
'test_pkg.script'
)
if
verbose
>
1
:
print
(
data
)
print
(
out
)
expected
=
"init_argv0==%r"
%
'-m'
self
.
assertIn
(
expected
.
encode
(
'utf-8'
),
out
)
self
.
_check_output
(
script_name
,
rc
,
out
,
...
...
Misc/ACKS
View file @
10ac77d2
...
...
@@ -1026,6 +1026,7 @@ Robert Xiao
Florent Xicluna
Hirokazu Yamamoto
Ka-Ping Yee
Jason Yeo
Bob Yodlowski
Danny Yoo
George Yoshida
...
...
Misc/NEWS
View file @
10ac77d2
...
...
@@ -152,6 +152,9 @@ Extension Modules
Tests
-----
- Issue #14032: Fix incorrect variable name in test_cmd_line_script debugging
message (Patch by Jason Yeo)
- Issue #14589: Update certificate chain for sha256.tbs-internet.com, fixing
a test failure in test_ssl.
...
...
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