-
Notifications
You must be signed in to change notification settings - Fork 144
Open
Description
Hi! First of all, thanks for creating this project. :)
I've found a parsing bug related to triple quotes. This is how to reproduce:
If I create a file named test.py with the following contents:
def test():
"""this is a test
this line will break parsing because triple quotes finish here, not the next line."""
passThen, run:
pycco test.pyAnd open docs/test.html in the browser, I'll get:
If I change the file to:
def test():
"""this is a test
this line will break parsing because triple quotes finish here, not the next line.
"""
passThen the output will be:
Metadata
Metadata
Assignees
Labels
No labels

