# coding: utf-8 from project import hello, branch if __name__ == '__main__': hello() branch(False, True) branch(True, True)
print('world') class Foo(object): """ Bar """ def baz(): print('this is not tested') ########NEW FILE######## __FILENAME__ = runtests # coding: utf-8 from project import hello if __name__ == '__main__': hello() ########NEW FILE######## __FILENAME__ = nonunicode # coding: iso-8859-15 def hello(): print ('I like PĆ³lya distribution.') ########NEW FILE######## __FILENAME__ = test_api # coding: utf-8 from __future__ import unicode_literals import json import os from os.path import join, dirname import re import shutil