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
e94cbd18
Commit
e94cbd18
authored
Mar 23, 2013
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Plain Diff
#17479: merge with 3.3.
parents
3213d72c
daa42c77
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
Lib/test/test_io.py
Lib/test/test_io.py
+4
-3
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_io.py
View file @
e94cbd18
...
@@ -3234,7 +3234,7 @@ class PySignalsTest(SignalsTest):
...
@@ -3234,7 +3234,7 @@ class PySignalsTest(SignalsTest):
test_reentrant_write_text
=
None
test_reentrant_write_text
=
None
def
test_main
(
):
def
load_tests
(
*
args
):
tests
=
(
CIOTest
,
PyIOTest
,
tests
=
(
CIOTest
,
PyIOTest
,
CBufferedReaderTest
,
PyBufferedReaderTest
,
CBufferedReaderTest
,
PyBufferedReaderTest
,
CBufferedWriterTest
,
PyBufferedWriterTest
,
CBufferedWriterTest
,
PyBufferedWriterTest
,
...
@@ -3267,7 +3267,8 @@ def test_main():
...
@@ -3267,7 +3267,8 @@ def test_main():
for
name
,
obj
in
py_io_ns
.
items
():
for
name
,
obj
in
py_io_ns
.
items
():
setattr
(
test
,
name
,
obj
)
setattr
(
test
,
name
,
obj
)
support
.
run_unittest
(
*
tests
)
suite
=
unittest
.
TestSuite
([
unittest
.
makeSuite
(
test
)
for
test
in
tests
])
return
suite
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
test_
main
()
unittest
.
main
()
Misc/NEWS
View file @
e94cbd18
...
@@ -1035,6 +1035,9 @@ Tests
...
@@ -1035,6 +1035,9 @@ Tests
-
Issue
#
16836
:
Enable
IPv6
support
even
if
IPv6
is
disabled
on
the
build
host
.
-
Issue
#
16836
:
Enable
IPv6
support
even
if
IPv6
is
disabled
on
the
build
host
.
-
Issue
#
17479
:
test_io
now
works
with
unittest
test
discovery
.
Patch
by
Zachary
Ware
.
-
Issue
#
17066
:
test_robotparser
now
works
with
unittest
test
discovery
.
-
Issue
#
17066
:
test_robotparser
now
works
with
unittest
test
discovery
.
Patch
by
Zachary
Ware
.
Patch
by
Zachary
Ware
.
...
...
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