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 Marc.Abramowitz
Recipients Arfrever, Marc.Abramowitz, brett.cannon, eric.smith, pnasrat
Date 2012-06-02.06:35:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1338618949.45.0.0757746264987.issue14982@psf.upfronthosting.co.za>
In-reply-to
Content
[last: 0] marca@scml-marca:~/dev/git-repos/pip$ python3.3
Python 3.3.0a4 (v3.3.0a4:7c51388a3aa7, May 30 2012, 16:58:42) 
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from pip import vcs
>>> from pkgutil import walk_packages, iter_modules
>>> print(list(iter_modules(path=vcs.__path__, prefix=vcs.__name__+'.')))
[]
>>> print(list(iter_modules(path=vcs.__path__)))
[]
>>> import pip.vcs.git
>>> pip.vcs.git
<module 'pip.vcs.git' from './pip/vcs/git.py'>
>>> import pip.vcs.mercurial
>>> pip.vcs.mercurial
<module 'pip.vcs.mercurial' from './pip/vcs/mercurial.py'>
>>> print(list(iter_modules(path=vcs.__path__, prefix=vcs.__name__+'.')))
[]
>>> print(list(iter_modules(path=vcs.__path__)))
[]
History
Date User Action Args
2012-06-02 06:35:49Marc.Abramowitzsetrecipients: + Marc.Abramowitz, brett.cannon, eric.smith, Arfrever, pnasrat
2012-06-02 06:35:49Marc.Abramowitzsetmessageid: <1338618949.45.0.0757746264987.issue14982@psf.upfronthosting.co.za>
2012-06-02 06:35:48Marc.Abramowitzlinkissue14982 messages
2012-06-02 06:35:48Marc.Abramowitzcreate