Changeset 4741 for trunk/GSASIIpath.py
- Timestamp:
- Jan 7, 2021 6:06:12 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIpath.py
r4740 r4741 751 751 return updatecount,modcount,locked 752 752 753 def GetBinaryPrefix( ):753 def GetBinaryPrefix(pyver=None): 754 754 if sys.platform == "win32": 755 755 prefix = 'win' … … 767 767 768 768 # format current python version 769 pyver = 'p{}.{}'.format(*sys.version_info[0:2]) 769 if pyver: 770 pyver = 'p'+pyver 771 else: 772 pyver = 'p{}.{}'.format(*sys.version_info[0:2]) 770 773 771 774 items = [prefix,bits,pyver]
Note: See TracChangeset
for help on using the changeset viewer.