Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed pydoc tests when run with -OO. | Serhiy Storchaka | 2015-03-01 | 1 | -0/+2 |
| | |||||
* | Issue #21548: Fix pydoc.synopsis() and pydoc.apropos() on modules with empty | Berker Peksag | 2015-02-20 | 1 | -0/+29 |
| | | | | | | docstrings. Initial patch by Yuyang Guo. | ||||
* | Fix test_pydoc failure introduced by e89c39125892. Patch by Berker Peksag. | Charles-François Natali | 2014-06-20 | 1 | -2/+4 |
| | |||||
* | Issue #21768: fix type in test_pydoc, patch by Claudiu Popa. | Terry Jan Reedy | 2014-06-20 | 1 | -1/+1 |
| | |||||
* | make sure the builtin help function doesn't fail when sys.stdin is not a ↵ | Benjamin Peterson | 2014-06-08 | 1 | -0/+8 |
| | | | | | | valid file (closes #11709) Original patch by Amaury Forgeot d'Arc with a test by bdettmer. | ||||
* | don't remove self from example code in the HTML output (closes #13223) | Benjamin Peterson | 2014-06-07 | 1 | -0/+44 |
| | | | | Patch by Víctor Terrón. | ||||
* | Fixed test_tempfilepager in test_pydoc on Windows. | Serhiy Storchaka | 2014-01-10 | 1 | -2/+3 |
| | | | | | Filename such as r'c:\users\db3l\appdata\local\temp\tmph3vkvf' contains '\t' which is interpreted by ast.literal_eval() as a tabulation. | ||||
* | #1065986: Make pydoc handle unicode strings. | R David Murray | 2014-01-05 | 1 | -0/+91 |
| | | | | Patch by Akira Kitada. | ||||
* | Issue #19397: test_pydoc now works with -S (help not added to builtins). | Terry Jan Reedy | 2013-11-05 | 1 | -1/+1 |
| | | | | Patch by Serhiy Storchaka and Vajrasky Kok. | ||||
* | Issue #11995: test_pydoc doesn't import all sys.path modules anymore. | Antoine Pitrou | 2013-05-19 | 1 | -8/+49 |
| | |||||
* | - Issue #17041: Fix testing when Python is configured with the | Serhiy Storchaka | 2013-01-27 | 1 | -9/+23 |
| | | | | --without-doc-strings option. | ||||
* | #14638: pydoc now treats non-str __name__ as None instead of raising | R David Murray | 2012-04-23 | 1 | -0/+11 |
| | | | | Original patch by Peter Otten. | ||||
* | Issue #13861: Prevent test_apropos* test case failures in test_pydoc. | Ned Deily | 2012-02-03 | 1 | -2/+2 |
| | |||||
* | Issue #7425: Refactor test_pydoc test case for '-k' behavior and add | Ned Deily | 2011-10-06 | 1 | -49/+63 |
| | | | | new test cases for importing bad packages and unreadable packages dirs. | ||||
* | Make “pydoc somebuiltin.somemethod” work (#8887) | Éric Araujo | 2011-07-29 | 1 | -2/+19 |
| | |||||
* | Backport test from #11926. | Ezio Melotti | 2011-04-28 | 1 | -1/+9 |
| | |||||
* | Issue #11666: Teach pydoc to display full help for named tuples | Raymond Hettinger | 2011-03-25 | 1 | -1/+11 |
| | |||||
* | Fix #8225. xml.etree was displaying an incorrect link when viewed in help. | Brian Curtin | 2010-03-31 | 1 | -0/+6 |
| | |||||
* | Issue 6292: for the moment at least, the test suite passes if run | R. David Murray | 2010-02-23 | 1 | -0/+4 |
| | | | | | | with -OO. Tests requiring docstrings are skipped. Patch by Brian Curtin, thanks to Matias Torchinsky for helping review and improve the patch. | ||||
* | #7930: fix stripid | Ezio Melotti | 2010-02-16 | 1 | -0/+13 |
| | |||||
* | use assert[Not]In where appropriate | Ezio Melotti | 2010-01-23 | 1 | -3/+3 |
| | |||||
* | Try to fix transient refleaks in test_pydoc. | Antoine Pitrou | 2009-10-30 | 1 | -3/+7 |
| | |||||
* | convert usage of fail* to assert* | Benjamin Peterson | 2009-06-30 | 1 | -3/+3 |
| | |||||
* | Fix issue 5230 by having pydoc's safeimport check to see if the import | R. David Murray | 2009-06-23 | 1 | -0/+42 |
| | | | | | 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. | ||||
* | fix issue #6121 by stripping spaces from the argument in the 'help' | R. David Murray | 2009-05-27 | 1 | -0/+8 |
| | | | | function. | ||||
* | Issue 3190: pydoc now hides module __package__ attributes | Nick Coghlan | 2008-07-02 | 1 | -2/+0 |
| | |||||
* | Correct test_pydoc for win32 platforms, to account for normalized URLs: | Amaury Forgeot d'Arc | 2008-06-10 | 1 | -1/+6 |
| | | | | C:\temp => file:///C|temp/ | ||||
* | fix test_pydoc so it works on make installed Python installations | Benjamin Peterson | 2008-05-22 | 1 | -14/+26 |
| | | | | Also let it pass when invoked directly | ||||
* | Use inspect.getabsfile() to get the documented module's filename. | Georg Brandl | 2008-05-20 | 1 | -7/+3 |
| | |||||
* | Improve diffing logic and output for test_pydoc. | Georg Brandl | 2008-05-20 | 1 | -7/+7 |
| | |||||
* | bring test_pydoc up to my high standards (now that I have them) | Benjamin Peterson | 2008-05-18 | 1 | -19/+17 |
| | |||||
* | GHOP #121: improve test_pydoc, by Benjamin Peterson. | Georg Brandl | 2008-05-18 | 1 | -33/+263 |
| | |||||
* | Use absolute import for test package | Amaury Forgeot d'Arc | 2008-04-24 | 1 | -1/+1 |
| | |||||
* | Add a few tests for pydoc. | Amaury Forgeot d'Arc | 2008-04-24 | 1 | -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. |