Re: trying to reach kevin smith, author of plastex

2006-08-16 Thread Kevin Smith
On 2006-08-15 15:28:36 -0400, "metaperl" <[EMAIL PROTECTED]> said: > Email to Kevin Smith regarding his plastex package failed. I hope he > read this group. The tarball that he needs to reproduce the error is > here: > http://arc.livingcosmos.org/wolfram-fruit2/wolfra

os.execvp()'ing an ssh command on windows

2005-12-07 Thread Kevin Smith
prompted to verify the host and for a password, but I can't type them in. It's as if the command prompt has taken control again. Is there any way to exec an interactive program such as ssh? Kevin Smith -- http://mail.python.org/mailman/listinfo/python-list

Why does super() require the class as the first argument?

2005-02-03 Thread Kevin Smith
super(self).go() I can create a super() that does this as follows: _super = super def super(obj, cls=None): if cls is None: return _super(type(obj), obj) return super(cls, obj) I guess I'm just not sure why it wasn't done that way in the first place

One-Shot Property?

2005-01-18 Thread Kevin Smith
possible? -- Kevin Smith [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list