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
0fe9070d
Commit
0fe9070d
authored
Mar 26, 2011
by
Ross Lagerwall
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459.
Patch by Ben Hayden.
parent
8fa944a7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
0 deletions
+5
-0
Lib/test/test_subprocess.py
Lib/test/test_subprocess.py
+1
-0
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_subprocess.py
View file @
0fe9070d
...
...
@@ -874,6 +874,7 @@ class ProcessTestCase(BaseTestCase):
stdout
=
subprocess
.
PIPE
,
bufsize
=
0
)
f
=
p
.
stdout
self
.
addCleanup
(
f
.
close
)
try
:
self
.
assertEqual
(
f
.
read
(
4
),
b"appl"
)
self
.
assertIn
(
f
,
select
.
select
([
f
],
[],
[],
0.0
)[
0
])
...
...
Misc/ACKS
View file @
0fe9070d
...
...
@@ -325,6 +325,7 @@ Jason Harper
Larry Hastings
Shane Hathaway
Rycharde Hawkes
Ben Hayden
Jochen Hayek
Christian Heimes
Thomas Heller
...
...
Misc/NEWS
View file @
0fe9070d
...
...
@@ -48,6 +48,9 @@ Core and Builtins
Library
-------
- Issue #11659: Fix ResourceWarning in test_subprocess introduced by #11459.
Patch by Ben Hayden.
- Issue #5537: Fix time2isoz() and time2netscape() functions of
httplib.cookiejar for expiration year greater than 2038 on 32-bit systems.
...
...
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