summaryrefslogtreecommitdiff
path: root/Lib/test/test_pydoc.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #27989: Tweak inspect.formatannotation() to improve pydoc rendering of ...Guido van Rossum2016-10-221-2/+23
|\
| * Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-081-0/+4
| * Issue #24254: Drop cls.__definition_order__.Eric Snow2016-09-081-7/+1
| * Issue #15767: Use ModuleNotFoundError.Eric Snow2016-09-071-1/+1
| * Issue #24254: Preserve class attribute definition order.Eric Snow2016-09-051-1/+7
| * Issue #27366: Implement PEP 487Nick Coghlan2016-07-301-1/+2
| * Issue #16484: Merge pydoc Windows fixes from 3.5Martin Panter2016-06-121-0/+16
| |\
| | * Merge: #16484: Fix pydoc doc links to modules whose names are mixed case.R David Murray2016-06-031-0/+14
| | |\
| | * \ Issue #27076: Merge spelling from 3.5Martin Panter2016-05-261-2/+2
| | |\ \
| | * \ \ Issue #18010: Merge pydoc web search fix from 3.5Martin Panter2015-11-061-0/+16
| | |\ \ \
| | | * | | Issue #24879: Teach pydoc to display named tuple fields in the order they we...Raymond Hettinger2015-08-181-0/+16
* | | | | | Issue #27989: Tweak inspect.formatannotation() to improve pydoc rendering of ...Guido van Rossum2016-10-221-0/+13
|/ / / / /
* | | | | Issue #16484: Fix pydoc link and test on Windows, by Kaushik NadikuditiMartin Panter2016-06-121-1/+1
| |_|_|/ |/| | |
* | | | #16484: Fix pydoc doc links to modules whose names are mixed case.R David Murray2016-06-031-0/+14
| |_|/ |/| |
* | | Issue #27076: Doc, comment and tests spelling fixesMartin Panter2016-05-261-2/+2
|/ /
* | Issue #18010: Merge pydoc web search fix from 3.4 into 3.5Martin Panter2015-11-061-6/+32
|\ \ | |/ |/|
| * Issue #18010: Fix pydoc web server search to handle package exceptionsMartin Panter2015-11-061-6/+32
* | Issue #9517: Move script_helper to the support package.Berker Peksag2015-05-061-1/+1
* | Issue #23008: Fixed resolving attributes with boolean value is False in pydoc.Serhiy Storchaka2015-04-211-34/+11
|\ \ | |/ |/|
| * Fixed pydoc tests when run with -OO.Serhiy Storchaka2015-03-011-34/+11
| |\
| | * Issue #19980: Improved help() for non-recognized strings. help('') nowSerhiy Storchaka2015-03-011-1/+4
| | * Issue #23374: Fixed pydoc failure with non-ASCII files when stdout encodingSerhiy Storchaka2015-02-201-33/+7
| | |\
| | | * merge 3.4 (#21548)Benjamin Peterson2015-02-161-0/+32
| | | |\
| | | * \ Merge from 3.4Senthil Kumaran2014-09-171-0/+2
| | | |\ \
| | | * \ \ Issue #21942: Fixed source file viewing in pydoc's server mode on Windows.Zachary Ware2014-07-101-5/+2
| | | |\ \ \
| | | * | | | Issue 21786: Clean-up test_pydoc taking taking advantage of diffing in unitt...Raymond Hettinger2014-06-211-33/+7
* | | | | | | Issue #23008: Fixed resolving attributes with boolean value is False in pydoc.Serhiy Storchaka2015-04-211-0/+8
|/ / / / / /
* | | | | | Fixed pydoc tests when run with -OO.Serhiy Storchaka2015-03-011-0/+4
|/ / / / /
* | | | | Issue #23374: Fixed pydoc failure with non-ASCII files when stdout encodingSerhiy Storchaka2015-02-201-0/+9
| |_|_|/ |/| | |
* | | | fix pydoc.apropos and pydoc.synopsis on modules with empty docstrings (#21548)Benjamin Peterson2015-02-161-0/+32
| |_|/ |/| |
* | | Merge from 3.3Senthil Kumaran2014-09-171-11/+380
|\ \ \ | | |/ | |/|
| * | Issue #21942: Fixed source file viewing in pydoc's server mode on Windows.Zachary Ware2014-07-101-5/+2
| |/
| * Fix test_pydoc failure introduced by 7aa72075d440. Patch by Berker Peksag.Charles-Fran?ois Natali2014-06-201-0/+3
| * Issue #21768: fix type in test_pydoc, patch by Claudiu Popa.Terry Jan Reedy2014-06-201-1/+1
| * make sure the builtin help function doesn't fail when sys.stdin is not a vali...Benjamin Peterson2014-06-071-0/+8
| * don't remove self from example code in the HTML output (closes #13223)Benjamin Peterson2014-06-071-0/+44
| * Issue #20484: Disable the 2 remaining "modules" tests in test_pydoc.Eric Snow2014-02-221-1/+3
| * Issue #20710: The pydoc summary line no longer displays the "self" parameterLarry Hastings2014-02-201-5/+35
| * Issue #20654: Fixed pydoc for enums with zero value. Patch by Vajrasky Kok.Serhiy Storchaka2014-02-191-0/+10
| * Fix test failures (--without-doc-strings).Stefan Krah2014-01-181-1/+3
| * Issue #20226: Added tests for new features and regressions.Larry Hastings2014-01-161-0/+5
| * Issue #19703: Update pydoc to use the new importer APIs.Eric Snow2014-01-061-0/+2
| * Issue 20123: Disable a problematic test.Eric Snow2014-01-041-2/+3
| * Issue 20123: try using a different builtin module in a pydoc test.Eric Snow2014-01-041-2/+2
| * Issue 20123: Fix pydoc.synopsis() for "binary" modules.Eric Snow2014-01-041-0/+52
| * Merge with 3.3Terry Jan Reedy2013-11-041-1/+1
| |\
| * | Issue #19030: fix new pydoc tests for --without-doc-stringsEthan Furman2013-10-221-5/+22
| * | Fix test_pydoc failure introduced by 2f09a6980e1a (issue #19030).Charles-Fran?ois Natali2013-10-211-14/+14
| * | Issue #19030: final pieces for proper location of various class attributes lo...Ethan Furman2013-10-201-0/+175
| * | Issue #15767: back out 8a0ed9f63c6e, finishing the removal ofBrett Cannon2013-07-041-1/+1