Changeset 1355
- Timestamp:
- May 20, 2014 11:49:19 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASII.py
r1339 r1355 3326 3326 Should be ignored on other platforms 3327 3327 ''' 3328 # PATCH: Canopy 1.4 script main seems dropped on app; ignore .py files 3329 if os.path.splitext(filename)[1] == '.py': return 3330 # end PATCH 3328 3331 self.main.OnFileOpen(None,filename) 3329 3332 -
trunk/GSASIIIO.py
r1331 r1355 865 865 def ProjFileOpen(G2frame): 866 866 'Read a GSAS-II project file and load into the G2 data tree' 867 if not os.path.exists(G2frame.GSASprojectfile): 868 print ('\n*** Error attempt to open project file that does not exist:\n '+ 869 str(G2frame.GSASprojectfile)) 870 return 867 871 file = open(G2frame.GSASprojectfile,'rb') 868 872 print 'load from file: ',G2frame.GSASprojectfile -
trunk/GSASIIpath.py
r1047 r1355 28 28 bindir = 'binwin%d.%d' % sys.version_info[0:2] 29 29 elif sys.platform == "darwin": 30 bindir = 'binmac%d.%d' % sys.version_info[0:2]31 30 import platform 31 if platform.architecture()[0] == '64bit': 32 bindir = 'binmac64-%d.%d' % sys.version_info[0:2] 33 else: 34 bindir = 'binmac%d.%d' % sys.version_info[0:2] 32 35 if platform.mac_ver()[0].startswith('10.5.'): 33 36 bindir += '_10.5'
Note: See TracChangeset
for help on using the changeset viewer.