Changes in sasmodels/generate.py [eafc9fa:fa8011eb] in sasmodels


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/generate.py

    reafc9fa rfa8011eb  
    191191The function :func:`make` loads the metadata from the module and returns 
    192192the kernel source.  The function :func:`doc` extracts the doc string 
    193 and adds the parameter table to the top.  The function :func:`sources` 
     193and adds the parameter table to the top.  The function :func:`model_sources` 
    194194returns a list of files required by the model. 
    195195""" 
     
    206206import numpy as np 
    207207 
    208 __all__ = ["make", "doc", "sources", "convert_type"] 
     208#__all__ = ["make", "doc", "model_sources", "convert_type"] 
    209209 
    210210C_KERNEL_TEMPLATE_PATH = joinpath(dirname(__file__), 'kernel_template.c') 
     
    233233    "degrees": "degree", 
    234234    "1/cm": "|cm^-1|", 
     235    "Ang/cm": "|Ang*cm^-1|", 
    235236    "": "None", 
    236237    } 
Note: See TracChangeset for help on using the changeset viewer.