Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #8812 > unrolled thread
| Started by | "Gabriel Genellina" <gagsl-py2@yahoo.com.ar> |
|---|---|
| First post | 2011-07-05 01:51 -0300 |
| Last post | 2011-07-05 01:51 -0300 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: from module import * using __import__? "Gabriel Genellina" <gagsl-py2@yahoo.com.ar> - 2011-07-05 01:51 -0300
| From | "Gabriel Genellina" <gagsl-py2@yahoo.com.ar> |
|---|---|
| Date | 2011-07-05 01:51 -0300 |
| Subject | Re: from module import * using __import__? |
| Message-ID | <mailman.620.1309841511.1164.python-list@python.org> |
En Sat, 02 Jul 2011 16:52:11 -0300, Dan Stromberg <drsalists@gmail.com> escribió: > Is there a decent way of running "from <variable> import *"? Perhaps > using > __import__? > > Does it mean using the copy module or adding an element to globals() > somehow? > > Yes, I think I do have a good use for this: importing either pure python > or > cython versions of a module into a single namespace that can provide the > same interface (transparent to the caller), whether C extension modules > are > viable in the current interpreter or not. So you have a stub module that > provides one or the other, depending on availability and suitability. See pickle.py in Python 3 as an example: the slow (pure Python) code resides in pickle.py; the fast (C code) in _pickle.so (on Windows, a built-in module). Near the end of pickle.py, there is a line "from _pickle import *" which, if successful, overrides (replaces) any previous definitions; if not, the ImportError is trapped and the previously defined Python code remains valid. Unlike the 2.x series, where you should decide to "import cPickle" or "import pickle" (or attempt both, cathcing the ImportError), here you only have to "import pickle" in your code; if the fast module is present, it is automatically loaded and used; else, the slow but compatible version is used. You don't even have to know that an alternative implementation exists. -- Gabriel Genellina
Back to top | Article view | comp.lang.python
csiph-web