| Tor Norbye | 3a2425a | 2013-11-04 10:16:08 -0800 | [diff] [blame^] | 1 | <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 | |
| 3 | def 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 | |
| 7 | class 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 | |
| 12 | def bar(): |
| 13 | """ bar docstring """ |
| 14 | pass |
| 15 | |
| 16 | a = '''some string''' |
| 17 | '''another string''' |