Re: [Python-Dev] requirements for moving __import__ over to importlib?

2012年2月07日 15:28:30 -0800

Brett Cannon <brett <at> python.org> writes:
> IOW you want the sys.modules case fast, which I will never be able to match 
compared to C code since that is pure execution with no I/O.
> 
Sure you can: have a really fast Python VM.
Constructive: if you can run this code under PyPy it'd be easy to just:
$ pypy -mtimeit "import struct"
$ pypy -mtimeit -s "import importlib" "importlib.import_module('struct')"
Or whatever the right API is.
Alex
_______________________________________________
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to