I'm trying to install the python module Cerealizer for a python 3.2 install on Windows server 2008. I ran 2to3 on the source and applied the results, and it all installed happily enough, but when I try to import it I get an error relating to the module "new". I believe this module is deprecated. Any ideas on how to update the cerealizer package to use the types module instead?

>>> import cerealizer
import cerealizer # directory c:\Python32\lib\site-packages\cerealizer
# c:\Python32\lib\site-packages\cerealizer\__pycache__\__init__.cpython-32.pyc m
atches c:\Python32\lib\site-packages\cerealizer\__init__.py
import cerealizer # precompiled from c:\Python32\lib\site-packages\cerealizer\__
pycache__\__init__.cpython-32.pyc
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "c:\Python32\lib\site-packages\cerealizer\__init__.py", line 127, in <mod
ule>
    from new       import instance
ImportError: No module named new
link|improve this question

this question is answered on StackOverflow stackoverflow.com/questions/5039452/… – Revolter Sep 1 '11 at 1:17
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.