Changeset bedb9b0 in sasmodels
- Timestamp:
- Aug 17, 2017 9:50:07 AM (7 years ago)
- Branches:
- master, core_shell_microgels, costrafo411, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- df30106, 3a45c2c
- Parents:
- 7a3f840
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/model_test.py
r9826f82 rbedb9b0 50 50 try: 51 51 from StringIO import StringIO 52 except ImportError: # StringIO.StringIO renamed to io.StringIO in Python 3 52 except ImportError: 53 # StringIO.StringIO renamed to io.StringIO in Python 3 54 # Note: io.StringIO exists in python 2, but using unicode instead of str 53 55 from io import StringIO 54 56 … … 342 344 343 345 def run_one(model): 344 # type: (str) -> None346 # type: (str) -> str 345 347 """ 346 348 Run the tests for a single model, printing the results to stdout.
Note: See TracChangeset
for help on using the changeset viewer.