blob: 331b7f9bf50f98309fb488f77dd3a0b4db14fd22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
"""Tests for missing-yield-doc and missing-yield-type-doc"""
# pylint: disable=missing-function-docstring, unused-argument, function-redefined
# Ignore no docstring
def my_func(self):
yield False
# Ignore unrecognized style docstring
def my_func(self):
"""This is a docstring."""
yield False
|