Changeset b297ba9 in sasmodels for sasmodels/kerneldll.py


Ignore:
Timestamp:
Mar 20, 2019 5:03:50 PM (5 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
master, core_shell_microgels, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
4e28511
Parents:
0d362b7
Message:

lint

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/kerneldll.py

    r3199b17 rb297ba9  
    174174 
    175175 
    176 def compile(source, output): 
     176def compile_model(source, output): 
    177177    # type: (str, str) -> None 
    178178    """ 
     
    265265        with os.fdopen(system_fd, "w") as file_handle: 
    266266            file_handle.write(source) 
    267         compile(source=filename, output=dll) 
     267        compile_model(source=filename, output=dll) 
    268268        # Comment the following to keep the generated C file. 
    269269        # Note: If there is a syntax error then compile raises an error 
Note: See TracChangeset for help on using the changeset viewer.