Merge pull request #314 from dhermes/py3-no-cover-test-file

Add no-cover pragma to test_file for Py3 compat imports.
This commit is contained in:
Nathaniel Manista
2015-09-22 11:48:39 -07:00

View File

@@ -41,7 +41,7 @@ from six.moves import http_client
try:
# Python2
from future_builtins import oct
except:
except: # pragma: NO COVER
pass
__author__ = 'jcgregorio@google.com (Joe Gregorio)'