I got MemoryError when I run the following code in sl4a on my HTC Desire:
def load_words():
print "Loading word list from file..."
inFile = open(words.txt, 'r', 0)
wordlist = []
for line in inFile:
wordlist.append(line.strip())
print " ", len(wordlist), "words loaded.\n"
return wordlist
After it prints "Loading word list from file...", it gives
Traceback (most recent call last):
File "words.txt", line 92, in <module>
wordlist = load_words()
File "words.txt", line 29, in load_words
for line in inFile:
MemoryError
BTW, the file "words.txt" has 83667 English words in it, size 633.6 KB. Help appreciated. (The code is part of MIT OpenCourseWare, CS 6.00 -- intro to computer science and programming, problem set 5, ps5_ghost.py)
Is this possibly a bug in sl4a?
[UPDATE]: I tried the following:
def load_words():
print "Loading word list from file..."
inFile = open(words.txt, 'r', 0)
wordlist = []
try:
for line in inFile:
wordlist.append(line.strip())
except MemoryError:
print 'Oops...'
print " ", len(wordlist), "words loaded.\n"
return wordlist
Then, magically, I got
Loading word list from file...
Oops...
83667 words loaded.
And the rest of the code worked fine. Does anyone know what caused this?