Changeset 3027
- Timestamp:
- Aug 25, 2017 12:16:49 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/exports/G2export_CIF.py
r3024 r3027 27 27 import copy 28 28 import re 29 import wx 30 import wx.lib.scrolledpanel as wxscroll 31 import wx.lib.resizewidget as rw 29 try: 30 import wx 31 import wx.lib.scrolledpanel as wxscroll 32 import wx.lib.resizewidget as rw 33 except ImportError: 34 # Avoid wx dependency for CLI 35 class Placeholder(object): 36 def __init__(self): 37 self.BoxSizer = object 38 self.Button = object 39 self.Dialog = object 40 self.ScrolledPanel = object 41 wx = Placeholder() 42 wxscroll = Placeholder() 32 43 import GSASIIpath 33 44 GSASIIpath.SetVersionNumber("$Revision$") 34 45 import GSASIIIO as G2IO 35 import GSASIIdataGUI as G2gd 36 import GSASIIctrlGUI as G2G 46 try: 47 import GSASIIdataGUI as G2gd 48 import GSASIIctrlGUI as G2G 49 except ImportError: 50 pass 37 51 import GSASIImath as G2mth 38 52 import GSASIIspc as G2spc
Note: See TracChangeset
for help on using the changeset viewer.