- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 143
Comparing changes
Open a pull request
base repository: pdoc3/pdoc
base: 0.10.0
head repository: pdoc3/pdoc
compare: 0.11.5
Commits on Sep 24, 2021
-
TST: use explicit ClassWithNew instead of typing.Generic
typing.Generic doesn't have a __new__ method in 3.9. Fixes #355
Configuration menu - View commit details
-
Copy full SHA for 4aa70de - Browse repository at this point
Copy the full SHA 4aa70deView commit details
Commits on Feb 3, 2022
-
Leave trailing line break in reST directives (#385)
* Add to `pdoc.test.Docformats.test_reST_include` to catch issue. * Add a single line-break at the end of `.. include::`ed files - except for when in a code block. * Minor change comment * Revert last 2 commits. * Don't consume trailing newline from reST directives. * [] itself a disjunctive list of characters
Configuration menu - View commit details
-
Copy full SHA for 2cce30a - Browse repository at this point
Copy the full SHA 2cce30aView commit details
Commits on Aug 19, 2022
-
BUG: Skip
__editable__
paths duringiter_modules
(#408)* Skip `__editable__` paths during `iter_modules` * Update pdoc/__init__.py
Configuration menu - View commit details
-
Copy full SHA for 60f77d2 - Browse repository at this point
Copy the full SHA 60f77d2View commit details
Commits on Oct 29, 2022
-
Configuration menu - View commit details
-
Copy full SHA for fce8d98 - Browse repository at this point
Copy the full SHA fce8d98View commit details -
Configuration menu - View commit details
-
Copy full SHA for b3a56d9 - Browse repository at this point
Copy the full SHA b3a56d9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 80af5d4 - Browse repository at this point
Copy the full SHA 80af5d4View commit details
Commits on Dec 21, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 3ecfbcf - Browse repository at this point
Copy the full SHA 3ecfbcfView commit details
Commits on Mar 9, 2024
-
REF: Fix deprecation warnings for PEP224 docstrings of class variables (
#437) * Update __init__.py ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead * Update __init__.py Attribute s is deprecated and will be removed in Python 3.14; use value instead * Update __init__.py DeprecationWarning: Attribute s is deprecated and will be removed in Python 3.14; use value instead
Configuration menu - View commit details
-
Copy full SHA for 14cd51c - Browse repository at this point
Copy the full SHA 14cd51cView commit details
Commits on Mar 11, 2024
-
Configuration menu - View commit details
-
Copy full SHA for bf256c6 - Browse repository at this point
Copy the full SHA bf256c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ce42f0 - Browse repository at this point
Copy the full SHA 8ce42f0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 65459ea - Browse repository at this point
Copy the full SHA 65459eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 75d2c5f - Browse repository at this point
Copy the full SHA 75d2c5fView commit details -
Configuration menu - View commit details
-
Copy full SHA for da13281 - Browse repository at this point
Copy the full SHA da13281View commit details -
Configuration menu - View commit details
-
Copy full SHA for 26c98f5 - Browse repository at this point
Copy the full SHA 26c98f5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 641e7a8 - Browse repository at this point
Copy the full SHA 641e7a8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 96e9155 - Browse repository at this point
Copy the full SHA 96e9155View commit details -
BUG: Added UnicodeDecodeError to list of expected exceptions in _pep2…
…24_docstrings() (#396) Co-authored-by: Frank Pecher <frank.pecher@endress.com>
Configuration menu - View commit details
-
Copy full SHA for cf5bffd - Browse repository at this point
Copy the full SHA cf5bffdView commit details
Commits on Jun 21, 2024
-
BUG: Fix documenting classes that contain
unittest.mock.Mock
(#352)* BUG: Make `unittest.mock.Mock` not appear callable (fix #350) * Add class with mocks to unit test example package
Configuration menu - View commit details
-
Copy full SHA for 56bbc9c - Browse repository at this point
Copy the full SHA 56bbc9cView commit details
Commits on Jun 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2c75136 - Browse repository at this point
Copy the full SHA 2c75136View commit details -
Configuration menu - View commit details
-
Copy full SHA for 357b450 - Browse repository at this point
Copy the full SHA 357b450View commit details -
REF: HTML: Don't Show Source Code button on module description
Needlessly copies full module source verbatim.
Configuration menu - View commit details
-
Copy full SHA for 79cfcda - Browse repository at this point
Copy the full SHA 79cfcdaView commit details -
Configuration menu - View commit details
-
Copy full SHA for ccc3658 - Browse repository at this point
Copy the full SHA ccc3658View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9533631 - Browse repository at this point
Copy the full SHA 9533631View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2bb1179 - Browse repository at this point
Copy the full SHA 2bb1179View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4eb45b5 - Browse repository at this point
Copy the full SHA 4eb45b5View commit details -
BUG: Fix a fatal error preventing documentation generation in some ca…
…ses (#302) * Update __init__.py Got a fatal exception on this line, which prevented the generation of the documentation. The problem is that some variable is initialized in a try bloc but still used out of it afterwards. If the getattr fails line 682 - which was my problem - then the variable is used without being initialized, which lead to fatal error. * Use `try-else` block
Configuration menu - View commit details
-
Copy full SHA for 3bf1cd8 - Browse repository at this point
Copy the full SHA 3bf1cd8View commit details -
Configuration menu - View commit details
-
Copy full SHA for c3fb554 - Browse repository at this point
Copy the full SHA c3fb554View commit details -
ENH: Discern properties from variables (#277)
* Possible way to address issue 276. This shows "property" if a variable is a property with a setter and/or a deleter and "ro-property" (read only property) if it is a property which does not have either a setter or getter. * Shorten comment line * Rename "vartype" to "kind". Also make property now show get/set/del depending on what is defined, e.g. propert/get/set * Remove unnecessary comment. * Make linter happy about line length. * REF: Make pdoc.Doc.obj point to raw property/descriptor * ENH: Introduce `Variable.kind: Literal["var","prop"]`
Configuration menu - View commit details
-
Copy full SHA for 9b64f7f - Browse repository at this point
Copy the full SHA 9b64f7fView commit details -
Configuration menu - View commit details
-
Copy full SHA for f7f053e - Browse repository at this point
Copy the full SHA f7f053eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 53cb9b8 - Browse repository at this point
Copy the full SHA 53cb9b8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 84ee28b - Browse repository at this point
Copy the full SHA 84ee28bView commit details -
Configuration menu - View commit details
-
Copy full SHA for d1136ea - Browse repository at this point
Copy the full SHA d1136eaView commit details
Commits on Jun 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 80697eb - Browse repository at this point
Copy the full SHA 80697ebView commit details
Commits on Jun 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 94d26e8 - Browse repository at this point
Copy the full SHA 94d26e8View commit details
Commits on Jun 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 69c4c24 - Browse repository at this point
Copy the full SHA 69c4c24View commit details -
Configuration menu - View commit details
-
Copy full SHA for 66225f4 - Browse repository at this point
Copy the full SHA 66225f4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2a66eb2 - Browse repository at this point
Copy the full SHA 2a66eb2View commit details
Commits on Nov 25, 2024
-
> pdoc/test/__init__.py:1727: error: Item "None" of "TextIOWrapper[_WrappedBuffer] | None" has no attribute "write" [union-attr]
Configuration menu - View commit details
-
Copy full SHA for 2acbeeb - Browse repository at this point
Copy the full SHA 2acbeebView commit details
Commits on Nov 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c706361 - Browse repository at this point
Copy the full SHA c706361View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e8bdfd - Browse repository at this point
Copy the full SHA 6e8bdfdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8793c67 - Browse repository at this point
Copy the full SHA 8793c67View commit details -
Configuration menu - View commit details
-
Copy full SHA for e319570 - Browse repository at this point
Copy the full SHA e319570View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d7f935 - Browse repository at this point
Copy the full SHA 4d7f935View commit details -
Configuration menu - View commit details
-
Copy full SHA for 78e771b - Browse repository at this point
Copy the full SHA 78e771bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 115a168 - Browse repository at this point
Copy the full SHA 115a168View commit details -
Configuration menu - View commit details
-
Copy full SHA for 224c228 - Browse repository at this point
Copy the full SHA 224c228View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0734db1 - Browse repository at this point
Copy the full SHA 0734db1View commit details -
Configuration menu - View commit details
-
Copy full SHA for aab629c - Browse repository at this point
Copy the full SHA aab629cView commit details
Commits on Dec 13, 2024
-
BUG: Fix bug with prebuilt Lunr.js index by including the crucial part
Ref: ccc3658 ENH: Prebuild Lunr.js search index
Configuration menu - View commit details
-
Copy full SHA for 6330d7e - Browse repository at this point
Copy the full SHA 6330d7eView commit details -
BUG: Fix git_link_template not showing for property, cached_property (#…
Configuration menu - View commit details
-
Copy full SHA for f33f891 - Browse repository at this point
Copy the full SHA f33f891View commit details
There are no files selected for viewing
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.