__init__.py 199B

12345678910111213
  1. # Used as parameters of str representations
  2. str_kwargs = dict(
  3. separator=' ',
  4. tabulation=' ',
  5. start_with="\n",
  6. end_with='\n ',
  7. )
  8. class BaseTest(object):
  9. pass