Changeset 4517


Ignore:
Timestamp:
Jul 8, 2020 9:23:37 AM (3 years ago)
Author:
toby
Message:

doc build issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIscriptable.py

    r4515 r4517  
    704704(This will create file ``before.txt``, which will contain hundreds of lines.)
    705705
    706 At this point open the project file, ``test.py`` in the GSAS-II GUI and
     706At this point open the project file, ``test.gpx`` in the GSAS-II GUI and
    707707change in Histogram/Sample Parameters the diffractometer type from Debye-Scherrer
    708708mode to Bragg-Brentano and then save the file.
     
    713713
    714714Finally look for the differences between files ``before.txt`` and ``after.txt`` using a tool
    715 such as diff on Linux/OS X or fc in Windows.
    716 
     715such as diff (on Linux/OS X) or fc (in Windows).
     716
     717in Windows::
    717718
    718719    Z:\>fc before.txt after.txt
     
    740741    (['Sample Parameters', 'Absorption'], <class 'list'>, [0.0, False])
    741742    *****
     743
     744in Linux/Mac::
    742745
    743746    bht14: toby$ diff before.txt after.txt
     
    43834386        Where the value returned is a list, it may be used as the target of
    43844387        an assignment (as in
    4385         ``getHistEntryValue(``...``)[``...``] = ``val)
     4388        ``getHistEntryValue(...)[...] = val``)
    43864389        to set a value inside a list.       
    43874390
     
    44024405        """Sets a histogram control value associated with a list of keys.
    44034406
     4407        See :meth:`G2Phase.setHAPentryValue` for a related example.
     4408
    44044409       :param list keylist: a list of dict keys, typically as returned by
    44054410          :meth:`getHistEntryList`.
     
    44084413          the same as the initial value, but if the value is a container
    44094414          (list, tuple, np.array,...) the elements inside are not checked.
    4410 
    4411         See :meth:`G2Phase.setHAPentryValue` for a related example.
    44124415
    44134416        """
     
    51845187        Where the value returned is a list, it may be used as the target of
    51855188        an assignment (as in
    5186         ``getPhaseEntryValue(``...``)[``...``] = ``val)
     5189        ``getHistEntryValue(...)[...] = val``)
    51875190        to set a value inside a list.       
    51885191
Note: See TracChangeset for help on using the changeset viewer.