Changeset 2546 for trunk/GSASIIexprGUI.py
- Timestamp:
- Nov 22, 2016 1:08:48 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIexprGUI.py
r2326 r2546 24 24 ''' 25 25 import re 26 import sys27 26 import wx 28 import os.path29 27 import wx.lib.scrolledpanel as wxscroll 30 28 import numpy as np … … 400 398 try: 401 399 float(val) 402 except ValueError,TypeError:400 except (ValueError,TypeError): 403 401 invalid += 1 404 402 if msg: msg += "; " … … 953 951 newobj = dlg.Show(True) 954 952 print dlg.GetDepVar() 955 import sys956 #sys.exit()957 953 958 954 #app.MainLoop()
Note: See TracChangeset
for help on using the changeset viewer.