- Timestamp:
- Feb 3, 2021 10:32:14 AM (2 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIplot.py
r4790 r4793 132 132 from scipy.ndimage.interpolation import map_coordinates 133 133 except (ImportError, ValueError): 134 pass 134 # avoid "duplicate base class _MockObject" error in class G2LstCtrl(): 135 # where listmix.ListCtrlAutoWidthMixin, listmix.ColumnSorterMixin are same 136 # in docs build 137 class Placeholder(object): 138 def __init__(self): 139 self.Dialog = object 140 class Placeholder1(object): pass 141 listmix = Placeholder() 142 listmix.ListCtrlAutoWidthMixin = Placeholder() 143 listmix.ColumnSorterMixin = Placeholder1() 135 144 import GSASIIpath 136 145 Clip_on = GSASIIpath.GetConfigValue('Clip_on',True) -
trunk/docs/source/index.rst
r4791 r4793 16 16 and pages referenced there. 17 17 18 Contents19 ---------20 18 21 19 .. toctree:: … … 43 41 G2tools.rst 44 42 indices.rst 43 44 45 ---------
Note: See TracChangeset
for help on using the changeset viewer.