This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Geoffrey Mégardon
Recipients Geoffrey Mégardon
Date 2015-12-14.14:35:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1450103730.5.0.342530922522.issue25861@psf.upfronthosting.co.za>
In-reply-to
Content
Hello,

I am trying to run a piece of code that I programmed some time ago.
Back then, it was working fine and it was plotting some data.
But today, while I am trying to improve the plots, I ran the code and did not work!

Here the message:

D:\Users\Geoffrey\Anaconda\python.exe "D:/Google Drive/Work/Experiences/experiment-deviation-initial/analysis/FigureTrajAndDeviation.py"
Traceback (most recent call last):
  File "D:/Google Drive/Work/Experiences/experiment-deviation-initial/analysis/FigureTrajAndDeviation.py", line 36, in <module>
    m = pickle.load( open(output_path+"/traj_and_RT_second_only.p", "rb" ) )
  File "D:\Users\Geoffrey\Anaconda\lib\pickle.py", line 1378, in load
    return Unpickler(file).load()
  File "D:\Users\Geoffrey\Anaconda\lib\pickle.py", line 858, in load
    dispatch[key](self)
  File "D:\Users\Geoffrey\Anaconda\lib\pickle.py", line 1090, in load_global
    klass = self.find_class(module, name)
  File "D:\Users\Geoffrey\Anaconda\lib\pickle.py", line 1126, in find_class
    klass = getattr(mod, name)
AttributeError: 'module' object has no attribute '_new_Index'

Process finished with exit code 1

I hope that you may now what it is about!!
I attached the code file.
History
Date User Action Args
2015-12-14 14:35:31Geoffrey Mégardonsetrecipients: + Geoffrey Mégardon
2015-12-14 14:35:30Geoffrey Mégardonsetmessageid: <1450103730.5.0.342530922522.issue25861@psf.upfronthosting.co.za>
2015-12-14 14:35:30Geoffrey Mégardonlinkissue25861 messages
2015-12-14 14:35:29Geoffrey Mégardoncreate