Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
install:
- pip install -r requirements.txt
before_script:
Expand Down
4 changes: 3 additions & 1 deletion rtkit/parser.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
try:
from itertools import filterfalse as ifilterfalse
from cStringIO import StringIO
except ImportError:
from itertools import ifilterfalse
try:
from io import StringIO
except ImportError:
from cStringIO import StringIO
import re
from rtkit import comment

Expand Down