Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# Changelog
## Pedantic 3.0.0
- removed decorator `@count_calls`
- removed decorator `@does_same_as_function`
- removed decorator `@mock`
- removed decorator `@rename_kwargs`
- removed decorator `@timer`
- removed decorator `@timer_class`
- removed decorator `@uminplemented`

## Pedantic 2.4.0
- migrate from unittest to pytest
- exclude tests from package deployment
Expand Down
15 changes: 0 additions & 15 deletions docs/pedantic/decorators/class_decorators.html
Original file line number Diff line number Diff line change
Expand Up @@ -128,20 +128,6 @@ <h2 class="section-title" id="header-functions">Functions</h2>
</details>
<div class="desc"><p>Shortcut for @for_all_methods(pedantic_require_docstring)</p></div>
</dd>
<dt id="pedantic.decorators.class_decorators.timer_class"><code class="name flex">
<span>def <span class="ident">timer_class</span></span>(<span>cls: ~C) ‑> ~C</span>
</code></dt>
<dd>
<details class="source">
<summary>
<span>Expand source code</span>
</summary>
<pre><code class="python">def timer_class(cls: C) -&gt; C:
&#34;&#34;&#34; Shortcut for @for_all_methods(timer) &#34;&#34;&#34;
return for_all_methods(decorator=timer)(cls=cls)</code></pre>
</details>
<div class="desc"><p>Shortcut for @for_all_methods(timer)</p></div>
</dd>
<dt id="pedantic.decorators.class_decorators.trace_class"><code class="name flex">
<span>def <span class="ident">trace_class</span></span>(<span>cls: ~C) ‑> ~C</span>
</code></dt>
Expand Down Expand Up @@ -176,7 +162,6 @@ <h2 class="section-title" id="header-functions">Functions</h2>
<li><code><a title="pedantic.decorators.class_decorators.for_all_methods" href="#pedantic.decorators.class_decorators.for_all_methods">for_all_methods</a></code></li>
<li><code><a title="pedantic.decorators.class_decorators.pedantic_class" href="#pedantic.decorators.class_decorators.pedantic_class">pedantic_class</a></code></li>
<li><code><a title="pedantic.decorators.class_decorators.pedantic_class_require_docstring" href="#pedantic.decorators.class_decorators.pedantic_class_require_docstring">pedantic_class_require_docstring</a></code></li>
<li><code><a title="pedantic.decorators.class_decorators.timer_class" href="#pedantic.decorators.class_decorators.timer_class">timer_class</a></code></li>
<li><code><a title="pedantic.decorators.class_decorators.trace_class" href="#pedantic.decorators.class_decorators.trace_class">trace_class</a></code></li>
</ul>
</li>
Expand Down
121 changes: 0 additions & 121 deletions docs/pedantic/decorators/fn_deco_count_calls.html

This file was deleted.

Loading