[issue8942] __path__ attribute of modules loaded by zipimporter is untested

2012-03-12 Thread Tatiana Al-Chueyr
Tatiana Al-Chueyr tatiana.alchu...@gmail.com added the comment: I'm working on it -- nosy: +tati_alchueyr ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8942 ___

[issue8942] __path__ attribute of modules loaded by zipimporter is untested

2012-03-12 Thread Tatiana Al-Chueyr
Tatiana Al-Chueyr tatiana.alchu...@gmail.com added the comment: Improved test so the __path__ of a package loaded from a zip file, using zipimporter, is checked. -- keywords: +patch Added file: http://bugs.python.org/file24796/issue8942_test_for_zipimporter.patch

[issue8942] __path__ attribute of modules loaded by zipimporter is untested

2012-03-12 Thread Roundup Robot
Roundup Robot devn...@psf.upfronthosting.co.za added the comment: New changeset 7e576ad85663 by R David Murray in branch 'default': #8942: add test for __path__ contents in zipimport tests http://hg.python.org/cpython/rev/7e576ad85663 -- nosy: +python-dev

[issue8942] __path__ attribute of modules loaded by zipimporter is untested

2012-03-12 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: I committed Tatiana's patch because it looks reasonable to me, but I'm not familiar enough with zipimport to know if additional tests are needed. If you think there are additional tests that should be added, please reopen the issue.

[issue8942] __path__ attribute of modules loaded by zipimporter is untested

2012-02-21 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- nosy: -brett.cannon ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8942 ___ ___ Python-bugs-list

[issue8942] __path__ attribute of modules loaded by zipimporter is untested

2012-02-20 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- keywords: +easy nosy: +brett.cannon, eric.snow, ncoghlan stage: - needs patch versions: +Python 2.7, Python 3.2, Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8942

[issue8942] __path__ attribute of modules loaded by zipimporter is untested

2010-06-08 Thread Jean-Paul Calderone
New submission from Jean-Paul Calderone exar...@twistedmatrix.com: Packages loaded from zip files have a __path__ sort of like any other package. The zipimport tests don't verify that this attribute has the correct value, though. -- components: Tests messages: 107327 nosy: exarkun