summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pydoc.py
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 73529 via svnmerge fromR. David Murray2009-06-231-0/+43
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73529 | r.david.murray | 2009-06-23 14:02:46 -0400 (Tue, 23 Jun 2009) | 4 lines Fix issue 5230 by having pydoc's safeimport check to see if the import error was thrown from itself in order to decide if the module can't be found. Thanks to Lucas Prado Melo for collaborating on the fix and tests. ........
* Merged revisions 72966 via svnmerge fromR. David Murray2009-05-271-0/+8
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72966 | r.david.murray | 2009-05-27 16:07:21 -0400 (Wed, 27 May 2009) | 4 lines fix issue #6121 by stripping spaces from the argument in the 'help' function. ........
* Issue 3190: pydoc now hides module __package__ attributesNick Coghlan2008-07-021-2/+0
|
* Correct test_pydoc for win32 platforms, to account for normalized URLs:Amaury Forgeot d'Arc2008-06-101-1/+6
| | | | C:\temp => file:///C|temp/
* fix test_pydoc so it works on make installed Python installationsBenjamin Peterson2008-05-221-14/+26
| | | | Also let it pass when invoked directly
* Use inspect.getabsfile() to get the documented module's filename.Georg Brandl2008-05-201-7/+3
|
* Improve diffing logic and output for test_pydoc.Georg Brandl2008-05-201-7/+7
|
* bring test_pydoc up to my high standards (now that I have them)Benjamin Peterson2008-05-181-19/+17
|
* GHOP #121: improve test_pydoc, by Benjamin Peterson.Georg Brandl2008-05-181-33/+263
|
* Use absolute import for test packageAmaury Forgeot d'Arc2008-04-241-1/+1
|
* Add a few tests for pydoc.Amaury Forgeot d'Arc2008-04-241-0/+33
This is a modified version of a patch proposed by Humberto Diogenes in the discussion of issue1883. I will merge manually this change into the py3k branch: the tests must be adapted.