This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_site is failing on AMD64 Snow Leopard
Type: behavior Stage: resolved
Components: Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: christian.heimes Nosy List: Esa.Peuha, christian.heimes, ned.deily, python-dev, r.david.murray
Priority: critical Keywords: buildbot

Created on 2013-10-17 02:43 by r.david.murray, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (7)
msg200104 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2013-10-17 02:43
See eg http://buildbot.python.org/all/builders/AMD64%20Snow%20Leop%203.x/builds/158/steps/test/logs/stdio
msg200115 - (view) Author: Esa Peuha (Esa.Peuha) Date: 2013-10-17 08:18
Apparently related to issue 19205 and issue 19209. Looks like _osx_support imports re which imports copyreg.
msg200118 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-10-17 11:40
New changeset 58aaf7542efe by Christian Heimes in branch 'default':
Issue #19275: Fix test_site on AMD64 Snow Leopard
http://hg.python.org/cpython/rev/58aaf7542efe
msg200119 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2013-10-17 11:41
Let's hope that did the trick.
msg200121 - (view) Author: Esa Peuha (Esa.Peuha) Date: 2013-10-17 12:51
Just by looking at the code, there still seems to be a problem: test_site.py was changed in 0b6052f2a8ee to test that the collections module isn't imported, but due to a bug it (re)tests the re module instead (re_mods needs to be changed to collection_mods).
msg200170 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-10-17 22:22
New changeset 510bf951210f by Ned Deily in branch 'default':
Issue #19275: Fix test_site failure on OS X due to typo.
http://hg.python.org/cpython/rev/510bf951210f
msg200172 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2013-10-17 22:48
Thanks for the observation, Esa.  The typo is now fixed and the test is no longer failing on OS X.
History
Date User Action Args
2022-04-11 14:57:52adminsetgithub: 63474
2013-10-17 22:48:50ned.deilysetstatus: open -> closed

nosy: + ned.deily
messages: + msg200172

resolution: fixed
stage: resolved
2013-10-17 22:22:42python-devsetmessages: + msg200170
2013-10-17 12:51:56Esa.Peuhasetmessages: + msg200121
2013-10-17 11:41:55christian.heimessetassignee: christian.heimes
messages: + msg200119
2013-10-17 11:40:35python-devsetnosy: + python-dev
messages: + msg200118
2013-10-17 10:20:29pitrousetpriority: normal -> critical
2013-10-17 08:18:13Esa.Peuhasetnosy: + Esa.Peuha
messages: + msg200115
2013-10-17 08:05:20ned.deilysetnosy: + christian.heimes
2013-10-17 02:43:46r.david.murraycreate