Changes in / [1941ec6:93fbc34] in sasmodels


Ignore:
Files:
8 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • .gitignore

    r2badeca r9248bf7  
    88*.so 
    99*.obj 
    10 *.o 
    1110/doc/_build/ 
    1211/doc/api/ 
     
    2019/.pydevproject 
    2120/.idea 
    22 .vscode 
    23 xlate.c 
    2421/sasmodels.egg-info/ 
    2522/example/Fit_*/ 
  • sasmodels/kerneldll.py

    r1ddb794 r2d81cfe  
    185185        subprocess.check_output(command, shell=shell, stderr=subprocess.STDOUT) 
    186186    except subprocess.CalledProcessError as exc: 
    187         raise RuntimeError("compile failed.\n%s\n%s" 
    188                            % (command_str, exc.output.decode())) 
     187        raise RuntimeError("compile failed.\n%s\n%s"%(command_str, exc.output)) 
    189188    if not os.path.exists(output): 
    190189        raise RuntimeError("compile failed.  File is in %r"%source) 
  • sasmodels/modelinfo.py

    r108e70e r108e70e  
    1212from os.path import abspath, basename, splitext 
    1313import inspect 
    14 import logging 
    1514 
    1615import numpy as np  # type: ignore 
    17  
    18 from . import autoc 
    1916 
    2017# Optional typing 
     
    3532    TestCondition = Tuple[ParameterSetUser, TestInput, TestValue] 
    3633# pylint: enable=unused-import 
    37  
    38 logger = logging.getLogger(__name__) 
    3934 
    4035# If MAX_PD changes, need to change the loop macros in kernel_iq.c 
     
    794789    info.structure_factor = getattr(kernel_module, 'structure_factor', False) 
    795790    info.profile_axes = getattr(kernel_module, 'profile_axes', ['x', 'y']) 
    796     info.c_code = getattr(kernel_module, 'c_code', None) 
    797791    info.source = getattr(kernel_module, 'source', []) 
    798792    info.c_code = getattr(kernel_module, 'c_code', None) 
     
    825819    info.lineno = {} 
    826820    _find_source_lines(info, kernel_module) 
    827     try: 
    828         autoc.convert(info, kernel_module) 
    829     except Exception as exc: 
    830         raise 
    831         logger.warn(str(exc)) 
    832821 
    833822    return info 
Note: See TracChangeset for help on using the changeset viewer.