blob: 9753127bc5a4c37416033b30e2f1a1bde4425813 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001<weak_warning descr="Triple double-quoted strings should be used for docstrings.">'''</weak_warning>package docstring<weak_warning descr="Triple double-quoted strings should be used for docstrings.">'''</weak_warning>
2
3def foo():
4 <weak_warning descr="Triple double-quoted strings should be used for docstrings.">"</weak_warning>foo docstring<weak_warning descr="Triple double-quoted strings should be used for docstrings.">"</weak_warning>
5 pass
6
7class Klass:
8 <weak_warning descr="Triple double-quoted strings should be used for docstrings.">'</weak_warning>class docstring\
9 second line<weak_warning descr="Triple double-quoted strings should be used for docstrings.">'</weak_warning>
10 pass
11
12def bar():
13 """ bar docstring """
14 pass
15
16a = '''some string'''
17'''another string'''