Skip to content

Commit

Permalink
Merge 7be8525 into a31ee69
Browse files Browse the repository at this point in the history
  • Loading branch information
nafur committed Apr 14, 2018
2 parents a31ee69 + 7be8525 commit 486682d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .travis.yml
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
@@ -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

0 comments on commit 486682d

Please sign in to comment.