Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
1k views

python 2.6 cPickle.load results in EOFError

I use cPickle to pickle a list of integers, using HIGHEST_PROTOCOL, cPickle.dump(l, f, HIGHEST_PROTOCOL) When I try to unpickle this using the following code, I get an EOFError. I tried 'seeking' ...
3
votes
1answer
287 views

Pickle: Reading a dictionary, EOFError

I recently found out about pickle, which is amazing. But it errors on me when used for my actual script, testing it with a one item dictionary it worked fine. My real script is thousands of lines of ...
2
votes
1answer
103 views

EOFError whilst pickling in Python

Here's the problem - I'm trying to pickle, and then unpickle hiscores. When I use pickle.load, Python seems to think that I'm trying to load a file called 'Pickle' that I have. Here's the code: def ...
2
votes
1answer
2k views

How to Handle EOFError for raw_input() in python in Mac OS X

My python program has two calls to raw_input() The first raw_input() is to take multiline input from the user. The user can issue Ctrl+D (Ctrl+Z in windows) for the end of input. Second raw_input() ...
2
votes
2answers
3k views

EOFError in Python script

I have the following code fragment: def database(self): databasename="" host="" user="" password="" try: self.fp=file("detailing.dat","rb") except IOError: ...
1
vote
1answer
231 views

ActiveResource EOFError on “slow” API

I'm seriously struggling to solve this one, any help would be appreciated! I have two Rails apps, let's call them Client and Service, all very simple, normal REST interface - here's the basic ...
1
vote
1answer
340 views

Python raw_input causing EOFError after creating app with py2app

I have written a small script that helps me solve scrabble and word-warp problems. It works fine when I run it from Mac OS X terminal. I would like to share the script with my friends as a standalone ...
1
vote
2answers
3k views

What is an EOFError in Ruby file !/O?

The official documentation doesn't specify. I understand EOFError means "End of file error", but what exactly does that mean? If a file reader reaches the end of a file, that doesn't sound like an ...
0
votes
3answers
115 views

Python user input EOF Error question with sys.stdin.readlines()

I am trying to get input from the user at the command prompt. The program reads in data from a text file in the manner of "cat text.txt | ./thescript.py" At the point of the script in question, ...
0
votes
1answer
99 views

Getting EOFError along with exceptions when using ftplib

I'm looking into using ftplib (and possibly ftputil) for doing some automated FTP file syncing. I have a couple of servers to test this against at the moment, but, whilst I'm having a successful ...
0
votes
0answers
126 views

Python multiprocessing.manager.BaseManager instance raises EOFError during an attempt to create an instance of a derived wx.Python class

I'm writing an application in which there are two continuously running processes: a wx.python application event loop for the gui, and a crawler class run loop which is used to trigger web-crawling ...
0
votes
1answer
105 views

using cPickle returns only the first entry in the file

I am storing a dictionary object into file using cPickle, and not able to get any other entry other than the first one. Initially the file tweets.pkl is empty, and the EOFError is raised. I am sure it ...
0
votes
2answers
268 views

Python: except EOFError: … doesn't work

I have a try/except block that sends a message and waits for confirmation from client. If the client terminates, pickle raises an EOFError, but the code below does not catch the error and execute the ...
0
votes
1answer
482 views

raw_input causing EOFError after creating exe with py2exe

After creating an exe from a script with py2exe raw_input() is causing an EOFError. How can I avoid this? File "test.py", line 143, in main raw_input("\nPress ENTER to continue ") EOFError: EOF ...
0
votes
1answer
799 views

Python module paramiko cannot connect as paramiko.Tranport((host,port)).connect(username = username, password = password)

This is an example which works fine on friend's computer: import paramiko host = "157.178.35.134" port = 222 username = "stackoverflow" password = "e2fghK3" transport = paramiko.Transport((host, ...
0
votes
1answer
805 views

XML-RPC over SSL with Ruby: end of file reached (EOFError)

I have some very simple Ruby code that is attempting to do XML-RPC over SSL: require 'xmlrpc/client' require 'pp' server = XMLRPC::Client.new2("https://%s:%d/" % [ 'api.ultradns.net', 8755 ]) pp ...
0
votes
4answers
184 views

What's Wrong? Question relied on: Files,Exceptions -> ERROR: EOFError

EDITED: import pickle filename=input('Enter a file name:') def entoles(): f=open(filename,'w') names=[] grades=[] while True: name=input("Give a student's name:") ...