Message162124
| 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:49 | Marc.Abramowitz | set | recipients:
+ Marc.Abramowitz, brett.cannon, eric.smith, Arfrever, pnasrat |
| 2012年06月02日 06:35:49 | Marc.Abramowitz | set | messageid: <1338618949.45.0.0757746264987.issue14982@psf.upfronthosting.co.za> |
| 2012年06月02日 06:35:48 | Marc.Abramowitz | link | issue14982 messages |
| 2012年06月02日 06:35:48 | Marc.Abramowitz | create |
|