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.

Author ncoghlan
Recipients larry, ncoghlan
Date 2013-11-23.01:33:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385170419.23.0.358767355948.issue19694@psf.upfronthosting.co.za>
In-reply-to
Content
Reviewing the current buildbot failures, this is still the only one reporting the error:

http://buildbot.python.org/all/builders/AMD64%20Ubuntu%20LTS%203.x/builds/3165/steps/test/logs/stdio

I can reproduce the failure locally by running:

$ PYTHONWARNINGS=d ./python -m test test_venv
[1/1] test_venv
/home/ncoghlan/devel/py3k/Lib/imp.py:32: PendingDeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
  PendingDeprecationWarning)
/tmp/tmpwmsqtb9y/pip-1.5.rc1-py2.py3-none-any.whl/pip/wheel.py:127: DeprecationWarning: This method will be removed in future versions.  Use 'parser.read_file()' instead.
test test_venv failed -- Traceback (most recent call last):
  File "/home/ncoghlan/devel/py3k/Lib/test/test_venv.py", line 289, in test_with_pip
    self.assertEqual(err, b"")
AssertionError: b"/home/ncoghlan/devel/py3k/Lib/imp.py:32:[160 chars]g)\n" != b''

1 test failed:
    test_venv

I'm updating the test to make sure that venv runs the subprocess in isolated mode.
History
Date User Action Args
2013-11-23 01:33:39ncoghlansetrecipients: + ncoghlan, larry
2013-11-23 01:33:39ncoghlansetmessageid: <1385170419.23.0.358767355948.issue19694@psf.upfronthosting.co.za>
2013-11-23 01:33:39ncoghlanlinkissue19694 messages
2013-11-23 01:33:38ncoghlancreate