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
456a2701
Commit
456a2701
authored
Oct 10, 2015
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Plain Diff
Issue #25365: test_pickle now works in threads disabled builds.
parents
9e777730
7b2cfc44
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
Lib/test/test_pickle.py
Lib/test/test_pickle.py
+3
-2
No files found.
Lib/test/test_pickle.py
View file @
456a2701
...
...
@@ -380,8 +380,9 @@ class CompatPickleTests(unittest.TestCase):
self
.
assertEqual
(
mapping
(
'exceptions'
,
name
),
(
'builtins'
,
name
))
import
multiprocessing.context
for
name
,
exc
in
get_exceptions
(
multiprocessing
.
context
):
def
test_multiprocessing_exceptions
(
self
):
module
=
support
.
import_module
(
'multiprocessing.context'
)
for
name
,
exc
in
get_exceptions
(
module
):
with
self
.
subTest
(
name
):
self
.
assertEqual
(
reverse_mapping
(
'multiprocessing.context'
,
name
),
(
'multiprocessing'
,
name
))
...
...
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