Fix pep8 E265 error in testcase

This commit is contained in:
Vadim Zeitlin 2016-12-11 22:20:44 +00:00 committed by William S Fulton
commit 07ebbe84b8

View file

@ -1,9 +1,9 @@
#if !defined(SWIGPYTHON_BUILTIN)
%define MODULEIMPORT
"
#print 'Loading low-level module $module'
# print 'Loading low-level module $module'
import $module
#print 'Module has loaded'
# print 'Module has loaded'
extra_import_variable = 'custom import of $module'
"
%enddef
@ -11,10 +11,10 @@ extra_import_variable = 'custom import of $module'
#else
%define MODULEIMPORT
"
#print 'Loading low-level module $module'
# print 'Loading low-level module $module'
extra_import_variable = 'custom import of $module'
from $module import *
#print 'Module has loaded'
# print 'Module has loaded'
"
%enddef
#endif