Ignore:
Timestamp:
Feb 22, 2019 9:35:29 AM (5 years ago)
Author:
toby
Message:

fix cif export w/unused histogram; switch 3.x imports to pickle w/warn if _pickle not available; doc fixes; scriptable enhancements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIdataGUI.py

    r3826 r3828  
    3030    import cPickle
    3131else:
    32     import _pickle as cPickle
     32    try:
     33        import _pickle as cPickle
     34    except:
     35        print('Warning: failed to import the optimized Py3 pickle (_pickle)')
     36        import pickle as cPickle
    3337import numpy as np
    3438import numpy.ma as ma
Note: See TracChangeset for help on using the changeset viewer.