[issue2135] Restructure import.c into PEP 302 importer objects
Brett Cannon
report at bugs.python.org
Fri Feb 22 22:23:45 CET 2008
Brett Cannon added the comment:
Sorry I have not commented on this sooner; been swamped.
First, the error Alexander is seeing is probably caused by a source file
that has an encoding other than ASCII (which is fine as the default
encoding in Python 3.0 is UTF-8). But chances are the file has an
encoding marker at the top and that is not being picked up by Douglas'
code. Look at PyTokenizer_FindEncoding() for a way to find out the encoding.
Second, I am the wrong person to be reviewing this as I have something
under development that competes with this. =) I am trying to get my pure
Python implementation bootstrapped into Python 3.0 to completely replace
the C code. But I don't know if I will pull this off in time so this
work could still be useful. But if I have to choose time between this
patch and my stuff, I am going to be biased. =)
----------
assignee: brett.cannon ->
__________________________________
Tracker <report at bugs.python.org>
<http://bugs.python.org/issue2135>
__________________________________
More information about the Python-bugs-list
mailing list