Option C Tools
Loading...
Searching...
No Matches
incomplete_docstring.py
Go to the documentation of this file.
1#!/usr/bin/env python3
2# -*- coding: utf-8 -*-
3# oct/tests/tests_formatter/fixtures/incomplete_docstring.py
4
5"""
6Purpose
7-------
8Test module with incomplete docstring.
9"""
10
11from oc_diagnostics import _dbg
12
13
14def foo():
15 """Simple function."""
16 _dbg("GENERAL", "foo")