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
582583bc
Commit
582583bc
authored
Aug 02, 2013
by
Ned Deily
Browse files
Options
Browse Files
Download
Plain Diff
Issue #17046: merge from 3.3
parents
95db2e7b
e92dfbfe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
Lib/test/test_subprocess.py
Lib/test/test_subprocess.py
+2
-1
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_subprocess.py
View file @
582583bc
...
...
@@ -416,7 +416,8 @@ class ProcessTestCase(BaseTestCase):
def
test_executable_without_cwd
(
self
):
# For a normal installation, it should work without 'cwd'
# argument. For test runs in the build directory, see #7774.
self
.
_assert_cwd
(
''
,
"somethingyoudonthave"
,
executable
=
sys
.
executable
)
self
.
_assert_cwd
(
os
.
getcwd
(),
"somethingyoudonthave"
,
executable
=
sys
.
executable
)
def
test_stdin_pipe
(
self
):
# stdin redirection
...
...
Misc/NEWS
View file @
582583bc
...
...
@@ -599,6 +599,8 @@ Library
Tests
-----
- Issue #17046: Fix broken test_executable_without_cwd in test_subprocess.
- Issue #15415: Add new temp_dir() and change_cwd() context managers to
test.support, and refactor temp_cwd() to use them. Patch by Chris Jerdonek.
...
...
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