Open GoogleCodeExporter opened 9 years ago
It seems that the error is being raised by tyring to import 'None' from
__builtin__
I can't find any code anywhere that says to import None. I did find in the
Python documentation that it says that as of version 2.4 assigning something to
None would cause it to raise a syntax error. If i try "from __builtin__ import
None" it raises the same error. Is this my problem? do i need to use an older
python interpreter?
Original comment by mjannapu...@gmail.com
on 6 Aug 2012 at 10:13
i just found this thread that seems to refer to this same problem, but like i
said, i don't see any code in EReader.py or anywhere else I've looked that
includes "from __builtin__ import float, str, None, True, False" so I can't
comment it out
Original comment by mjannapu...@gmail.com
on 6 Aug 2012 at 10:29
Got it figure out guys... That's it for this problem, i'm sure I will create
others :)
Original comment by mjannapu...@gmail.com
on 6 Aug 2012 at 11:14
I have the exact same problem, so would you care to share your solution?
Thanks a bunch
Original comment by bvanmarw...@gmail.com
on 27 Jul 2013 at 12:33
I believe removing None from the
from __builtin__ import float, str, None, True, False
might do the trick
Original comment by maggi...@gmail.com
on 6 Sep 2013 at 11:00
Hello, I'm getting the same problem, would you kindly share your solution?
Regards,mg
Original comment by gru...@gmail.com
on 24 Oct 2013 at 8:56
I had the same problem. The solution was to just remove None as suggested by
maggi:
from __builtin__ import float, str, True, False
Original comment by leopoldo...@gmail.com
on 4 Jan 2014 at 6:40
Same issue here. Deleted "None" from that line and it works now.
Original comment by andrescabral
on 6 Jan 2014 at 11:20
Original issue reported on code.google.com by
mjannapu...@gmail.com
on 6 Aug 2012 at 9:53