On 27 Nov, 11:21, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote:

> You can't do that. How should python distinguish between the two modules
> with the same name?

That's why I was trying to import them with different names :)

> What you can do is
>
>  - import the old package
>  - unpickle
>  - convert to some neutral exchange format, simple dicts, lists, tuples
>  - pickle that
>
>  - import the new package
>  - unpickle the exchange data
>  - stuff it into the new classes

Thanks, this is what I did.

matteo
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to