diff options
Diffstat (limited to 'tests/roots/test-ext-autodoc/target/classes.py')
-rw-r--r-- | tests/roots/test-ext-autodoc/target/classes.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/roots/test-ext-autodoc/target/classes.py b/tests/roots/test-ext-autodoc/target/classes.py new file mode 100644 index 000000000..dc471a6f3 --- /dev/null +++ b/tests/roots/test-ext-autodoc/target/classes.py @@ -0,0 +1,12 @@ +class Foo: + pass + + +class Bar: + def __init__(self, x, y): + pass + + +class Baz: + def __new__(cls, x, y): + pass |