[issue2966] pydoc doesnt show 'from module import identifier' in the docs

2009-03-29 Thread Georg Brandl
Georg Brandl added the comment: I agree. -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___ Python-bugs-lis

[issue2966] pydoc doesnt show 'from module import identifier' in the docs

2008-05-25 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I think he means that if you use "from m import x" to import part of module interface, "x" is not shown in the generated doc. -- nosy: +benjamin.peterson __ Tracker <[EMAIL PROTECTED]>

[issue2966] pydoc doesnt show 'from module import identifier' in the docs

2008-05-25 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Can you expand a bit? What exactly do you expect in the generated documentation that is not there? -- nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> ___

[issue2966] pydoc doesnt show 'from module import identifier' in the docs

2008-05-25 Thread Peter Puk
New submission from Peter Puk <[EMAIL PROTECTED]>: When you try to make a doc from your programm woth pydoc, it doesnt show the the identifiers in the modules section. when i put 'from module import identifier' in my code -- components: Extension Modules messages: 67340 nosy: peter.puk s