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
86823a52
Commit
86823a52
authored
Oct 17, 2013
by
Christian Heimes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #19275: Fix test_site on AMD64 Snow Leopard
parent
e4508eeb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
Lib/test/test_site.py
Lib/test/test_site.py
+3
-2
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_site.py
View file @
86823a52
...
...
@@ -443,8 +443,9 @@ class StartupImportTests(unittest.TestCase):
self
.
assertFalse
(
modules
.
intersection
(
re_mods
),
stderr
)
# http://bugs.python.org/issue9548
self
.
assertNotIn
(
'locale'
,
modules
,
stderr
)
# http://bugs.python.org/issue19209
self
.
assertNotIn
(
'copyreg'
,
modules
,
stderr
)
if
sys
.
platform
!=
'darwin'
:
# http://bugs.python.org/issue19209
self
.
assertNotIn
(
'copyreg'
,
modules
,
stderr
)
# http://bugs.python.org/issue19218>
collection_mods
=
{
'_collections'
,
'collections'
,
'functools'
,
'heapq'
,
'itertools'
,
'keyword'
,
'operator'
,
...
...
Misc/NEWS
View file @
86823a52
...
...
@@ -123,6 +123,8 @@ Library
Tests
-----
- Issue #19275: Fix test_site on AMD64 Snow Leopard
- Issue #14407: Fix unittest test discovery in test_concurrent_futures.
- Issue #18919: Unified and extended tests for audio modules: aifc, sunau and
...
...
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