Changeset 3187 for trunk/GSASIIscriptable.py
- Timestamp:
- Dec 10, 2017 10:14:04 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIscriptable.py
r3157 r3187 9 9 ########### SVN repository information ################### 10 10 """ 11 *GSASIIscriptable: Scripting Tools*12 ====================================== 11 *GSASIIscriptable: Scripting Interface* 12 ======================================= 13 13 14 14 Routines for reading, writing, modifying and creating GSAS-II project (.gpx) files. … … 312 312 import datetime as dt 313 313 import sys 314 import cPickle 314 import platform 315 if '2' in platform.python_version_tuple()[0]: 316 import cPickle 317 else: 318 import _pickle as cPickle 315 319 import imp 316 320 import copy … … 1326 1330 if outputnames: 1327 1331 if len(refinements) != len(outputnames): 1328 raise ValueError("Should have same number of out uputs to"1332 raise ValueError("Should have same number of outputs to" 1329 1333 "refinements") 1330 1334 else:
Note: See TracChangeset
for help on using the changeset viewer.