- Timestamp:
- Jan 22, 2016 1:21:56 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/GSASII.py ¶
r2132 r2134 3795 3795 print "Platform info:",sys.platform,platform.architecture()[0],platform.machine() 3796 3796 #print "wxPython description",wx.PlatformInfo 3797 print "This is GSAS-II version: ",__version__,' revision '+str(GSASIIpath.GetVersionNumber())3797 print "This is GSAS-II version: ",__version__,' revision #'+str(GSASIIpath.GetVersionNumber()) 3798 3798 GSASIIpath.InvokeDebugOpts() 3799 3799 main() # start the GUI -
TabularUnified trunk/GSASIIpath.py ¶
r1971 r2134 136 136 '''Return the maximum version number seen in :func:`SetVersionNumber` 137 137 ''' 138 return version 138 if version > 1000: 139 return version 140 else: 141 return "unknown" 139 142 140 143 def LoadConfigFile(filename):
Note: See TracChangeset
for help on using the changeset viewer.