Message108024
> To avoid the wasted memory and import time, it's better to use:
>
> try:
> from _cmodule import *
> except ImportError:
> from _pymodule import *
>
.. also this makes it harder to prototype things in Python or have mixed Python/C modules. The goal is to use Python implementation unless native implementation exists on per function/class basis. The syntax above makes it all or nothing. |
|
| Date |
User |
Action |
Args |
| 2010-06-17 14:49:16 | belopolsky | set | recipients:
+ belopolsky, lemburg, brett.cannon, amaury.forgeotdarc, pitrou, vstinner, techtonik, r.david.murray, brian.curtin, daniel.urban |
| 2010-06-17 14:49:16 | belopolsky | set | messageid: <[email protected]> |
| 2010-06-17 14:49:14 | belopolsky | link | issue7989 messages |
| 2010-06-17 14:49:14 | belopolsky | create | |
|