Skip to content

Tags: sfstpala/pdoc

Tags

0.3.1

Toggle 0.3.1's commit message
0.3.1

=====
  - Source code is extracted from __wrapped__ if it exists, and then
    falls back to inspect.getsourcelines. This reverses the behavior
    implemented in mitmproxy#6.
  - Fix Python 2.6 compatibility by requiring Markdown < 2.5 (mitmproxy#19).
    Markdown 2.5 dropped support for Python 2.6.
  - Get rid of tabs that sneaked in from mitmproxy#17.
  - Fix pep8 violations.

0.3.0

Toggle 0.3.0's commit message
0.3.0

=====
  - Major HTML face lift. Kudos to @knadh!
    (PR: mitmproxy#17)

0.2.3

Toggle 0.2.3's commit message
0.2.3

=====
  - Fixed mitmproxy#10 (the --template-dir flag now works).

0.2.2

Toggle 0.2.2's commit message
0.2.2

=====
  - Fixes mitmproxy#7 by ignoring module loaders that lack a 'path' attribute.

0.2.1

Toggle 0.2.1's commit message
0.2.1

=====
  - Fixes mitmproxy#5 by trying to find source for decorated functions.
    (@austin1howard)

0.2.0

Toggle 0.2.0's commit message
0.2.0

=====
  - Fix issue mitmproxy#2 by making pdoc a package instead of a module.
    The templates are now included as package_data, which seems
    to be more portable (its final location is more predictable).

0.1.7

Toggle 0.1.7's commit message
0.1.7

=====
  - Removed __new__ from the public interface. I think __init__
    is sufficient.

0.1.6

Toggle 0.1.6's commit message
0.1.6

=====
  - Fixed bug mitmproxy#1.

0.1.5

Toggle 0.1.5's commit message
0.1.5

=====
  - Fixed a bug with an improper use of getattr.
  - Made pdoc aware of __slots__. (Every identifier in __slots__
    is automatically interpreted as an instance variable.)

0.1.4

Toggle 0.1.4's commit message
0.1.4

=====
  - Fixed bug where getargspec wasn't being used in Python 2.x.