File: multiline_string.py

package info (click to toggle)
flake8-quotes 3.4.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 300 kB
  • sloc: python: 938; sh: 28; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 107 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
s = """ abc
def
ghi """

s = """ abc
def '''
ghi
"""

s = ''' abc
def
ghi '''

s = ''' abc
def """
ghi
'''