8000 Import with statement from future · thinkingserious/twilio-python@d8be3e1 · GitHub
[go: up one dir, main page]

Skip to content

Commit d8be3e1

Browse files
committed
Import with statement from future
1 parent 6a3be2c commit d8be3e1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/test_base_resource.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
"""
2-
Test the base Resource class
3-
"""
1+
# -*- coding: utf-8 -*-
2+
from __future__ import with_statement
43
import sys
4+
55
if sys.version_info < (2, 7):
66
import unittest2 as unittest
77
else:
88
import unittest
9+
910
from mock import Mock, patch
1011
from nose.tools import assert_equals
1112
from nose.tools import raises

0 commit comments

Comments
 (0)
0