Re: ANN: Urwid 1.0.0 - Console UI Library

2011-09-23 Thread Michael P. Soulier
On 22/09/11 Ian Ward said: > Announcing Urwid 1.0.0 > -- Congrats. -- http://mail.python.org/mailman/listinfo/python-list

Re: Can't instantiate class

2005-11-06 Thread Michael P. Soulier
Util, and by calling DataUtil(), you're trying to call the module, hence the error. I think you want db = DataUtil.DataUtil() Or, from DataUtil import DataUtil And then your code will work. Mike -- Michael P. Soulier <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Linked list?

2005-10-31 Thread Michael P. Soulier
simply make one via references in a class? class MyNode(object): next = None Should do it, no? Mike -- Michael P. Soulier <[EMAIL PROTECTED]> -- http://mail.python.org/mailman/listinfo/python-list

Re: socket setdefaulttimeout

2005-08-15 Thread Michael P. Soulier
ldn't an alarm be much simpler than a whole thread just for this? Mike -- Michael P. Soulier <[EMAIL PROTECTED]> "Those who would give up esential liberty for temporary safety deserve neither liberty nor safety." --Benjamin Franklin pgp0gNXOorhuD.pgp Description: PGP signat

Re: Why Tcl/Tk?

2005-08-01 Thread Michael P. Soulier
d get all of the versions right. Java does this better. Mike -- Michael P. Soulier <[EMAIL PROTECTED]> "Those who would give up esential liberty for temporary safety deserve neither liberty nor safety." --Benjamin Franklin pgph4uE4YTLTz.pgp Description: PGP signature -- http://

getting tracebacks from traceback objects

2005-06-23 Thread Michael P. Soulier
; assert(False) None Pretty sure this worked in 1.5.2. Am I doing something wrong here? I want format_exe especially, since I don't want to print to stdout, I want to provide the traceback in a popup dialog. Thanks, Mike -- Michael P. Soulier <[EMAIL PROTECTED]> http://www.digi

Re: os.system(cmd) isn't working

2005-06-23 Thread Michael P. Soulier
On 23/06/05 Tim Golden said: > This is only half an answer, but I personally find faffing > about with the double-quote / double-backslash stuff between > Python and Windows a pain in the neck, so where I can I avoid it. Indeed. I believe this is why Python has os.sep. Mike --

oddness in shelve module

2005-06-21 Thread Michael P. Soulier
self.partitions = doc.children elif doc.type == 'siloShowMaxFree': self.free = doc.scalar else: raise AssertionError, "Unknown document type: %s" % doc.type -- Michael P. Soulier <[EMAIL PROTECTED]> http://www.digitaltorque.ca http://opag.ca python -c 'import this' Jabber: [EMAIL PROTECTED] pgpscuURQeKCo.pgp Description: PGP signature -- http://mail.python.org/mailman/listinfo/python-list

Re: oddness in super()

2005-06-18 Thread Michael P. Soulier
the 2.3 cruft seems to have fixed something. Thanks, Mike -- Michael P. Soulier <[EMAIL PROTECTED]> http://www.digitaltorque.ca http://opag.ca python -c 'import this' Jabber: [EMAIL PROTECTED] pgpoH6WnRonmw.pgp Description: PGP signature -- http://mail.python.org/mailman/listinfo/python-list

oddness in super()

2005-06-18 Thread Michael P. Soulier
nit__ super(RemGuiFrame, self).__init__(*args, **kwds) TypeError: super() argument 1 must be type, not classobj Why the difference? Is Python portability overrated? Is this a bug? I'm confused. Mike -- Michael P. Soulier <[EMAIL PROTECTED]> http://www.digitaltorque.ca http://opag