Hi,

I noticed that the UserList and UserString modules are missing in Pythonista 1.3. UserDict, however, is present:

import UserDict
import UserList
Traceback (most recent call last):
File "", line 1, in
ImportError: No module named UserList
import UserString
Traceback (most recent call last):
File "", line 1, in
ImportError: No module named UserString

These modules are deprecated, but 3rd party libraries might use them. As a workaround, just replace the UserList.UserList class with list, and UserString.UserString with string,