Senthil Kumaran wrote on 2011-05-18 20:12: > On Tue, May 17, 2011 at 11:55 PM, Ian Ward <[email protected]> wrote: >> Senthil Kumaran wrote on 2011-05-17 11:50: >>> I am interested in updating the urwid library to python3k. I pulled the >>> latest >>> ... >>> NameError: No such signal 'update palette entry' for object >>> <urwid.raw_display.Screen object at 0x7f8d90cb6f10> >>> >> python3 setup.py build >> >> and then run the demos etc from the build directory. When you say you >> use 2to3, how exactly are you running it? Also are you using the latest >> default branch from bitbucket? > > > I thought, I responded to this, looks like the email has not reached. > > When I do python3 setup.py build, the first Warning that spits out is: > > /usr/local/lib/python3.3/distutils/dist.py:259: UserWarning: Unknown > distribution option: 'use_2to3' > > And urwid builds. But the code is still Python2 specific, I still have > to run 2to3 on all the modules before I use python3 to try out any > example. > > Is this the case for you too?
No, I forgot to say that you need to have distribute installed: http://pypi.python.org/pypi/distribute It's a replacement for distutils/setuptools that supports python 2 and 3 at the same time (with that use_2to3 option) Ian _______________________________________________ Urwid mailing list [email protected] http://lists.excess.org/mailman/listinfo/urwid
