forked from mitmproxy/pdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflavors_numpy.txt
18 lines (18 loc) · 1.44 KB
/
flavors_numpy.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<module flavors_numpy # Example NumPy-style …
<var module_level_variable2 = 98765 # int: Module level va…>
<function def function_with_types_in_docstring(param1, param2): ... # Example function wit…>
<function def function_with_pep484_type_annotations(param1: int, param2: str) -> bool: ... # Example function wit…>
<function def module_level_function(param1, param2=None, *args, **kwargs): ... # This is an example o…>
<function def example_generator(n): ... # Generators have a ``…>
<class flavors_numpy.ExampleError # Exceptions are docum…
<method def __init__(self, msg, code): ...>
<method def with_traceback(unknown): ... # inherited from builtins.BaseException.with_traceback, Exception.with_trace…>
<var args = <attribute 'args' of 'BaseException' objects> # inherited from builtins.BaseException.args>>
<class flavors_numpy.ExampleClass # The summary line for…
<method def __init__(self, param1, param2, param3): ... # Example of docstring…>
<var attr5 # str: Docstring *afte…>
<var readonly_property # str: Properties shou…>
<var readwrite_property # :obj:`list` of :obj:…>
<method def example_method(self, param1, param2): ... # Class methods are si…>>
<function def foo(var1, var2, *args, long_var_name='hi', **kwargs): ... # Summarize the functi…>
<function def invalid_format(test): ... # In this example, the…>>