Changeset bedb9b0 in sasmodels


Ignore:
Timestamp:
Aug 17, 2017 7:50:07 AM (7 years ago)
Author:
Paul Kienzle <pkienzle@…>
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
Message:

address review comments for #754

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/model_test.py

    r9826f82 rbedb9b0  
    5050try: 
    5151    from StringIO import StringIO 
    52 except ImportError: # StringIO.StringIO renamed to io.StringIO in Python 3 
     52except 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 
    5355    from io import StringIO 
    5456 
     
    342344 
    343345def run_one(model): 
    344     # type: (str) -> None 
     346    # type: (str) -> str 
    345347    """ 
    346348    Run the tests for a single model, printing the results to stdout. 
Note: See TracChangeset for help on using the changeset viewer.