Changeset 4823 for trunk/GSASIIstrIO.py
- Timestamp:
- Feb 20, 2021 1:25:23 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIstrIO.py
r4814 r4823 191 191 fixedList = [] 192 192 ignored = 0 193 namedVarList = [] 193 194 for item in constList: 194 195 if item[-1] == 'h': … … 214 215 if varname is not None: 215 216 varname = str(varname) # in case this is a G2VarObj 216 if ':' in varname:217 if varname.startswith(':'): 217 218 D['_name'] = varname 218 219 else: 219 D['_name'] = '::' + varname 220 D['_name'] = '::nv-' + varname 221 D['_name'] = G2obj.MakeUniqueLabel(D['_name'],namedVarList) 220 222 D['_vary'] = varyFlag == True # force to bool 221 223 constDict.append(D)
Note: See TracChangeset
for help on using the changeset viewer.