Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The Error:

Traceback (most recent call last):
File "<string>", line 244, in run_nodebug
File "C:\Python26\pickleexample.py", line 13, in <module>
place = cPickle.load(f)
cPickle.UnpicklingError: NEWOBJ class argument has NULL tp_new

My Code:

import Tkinter
import cPickle

root = Tkinter.Tk()
place = 0
root.place = Tkinter.IntVar()
root.sclX = Tkinter.Scale(root, from_=0, to=1500, orient='horizontal', resolution=1,
                          variable=root.place)
root.sclX.pack(ipadx=75)

try:
    with open('myconfig.pk', 'rb') as f:
        place = cPickle.load(f)
except IOError:
    pass
else:
    root.place.set(place)


def tracer(*a):
    global place
    place = root.place.get()
root.place.trace('r', tracer)


root.resizable(False, False)
root.title('Scale')
root.mainloop()


with open('myconfig.pk', 'wb') as f:
    cPickle.dump(place, f, -1);
share|improve this question
Works for me using python 2.6.5 – PreludeAndFugue Jul 4 '10 at 23:48
Hmm, I'm running that exact code in 2.6.5 and it's giving me that error... – RectangleTangle Jul 5 '10 at 0:29
Works fine for me on 2.6.4 on Windows as well. Try using the Pickle module instead and see if you get the same error. – Simon Hibbs Jul 9 '10 at 16:51
Does it still fail if you delete myconfig.pk and try again? If you add print(type(place)) at the end of the program, what does it say? – Marius Gedminas Jul 10 '10 at 15:11

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.