Fixes #26: triple-quoted strings are identified as such, not as comments

This commit is contained in:
Adam 2013-06-28 21:17:29 -07:00
parent 04cedf9844
commit 4789dd1097

View File

@ -15,8 +15,9 @@ to Python 2.x. Look for another tour of Python 3 soon!
```python
# Single line comments start with a hash.
""" Multiline comments can we written
using three "'s
""" Multiline strings can we written
using three "'s, and are often used
as comments
"""
####################################################