Re: HTTP headers problem

2002-05-05 Thread Markus Daniel
Please add an "Content-Length" entry in front of the "Content-Type" entry. Sukram - Original Message - From: "Jeremy Aiyadurai" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 03, 2002 4:18 AM Subject: HTTP headers problem > hi all > > here is a barebone webserver. I a

PythonWin (on Win95) problem with Browse PythonPath

2002-05-05 Thread Blair Hall
I just downloaded ActiveState Python 2.2.1 build 222 and installed it on a Windows95 machine. Everything seemed to go fine, however I have just noticed that I cannot use the 'Browse PythonPath' menu item in the PythonWin IDE. The following error message appears: >>> Failed to execute command: f

Re: passing arrays to a dynwin.windll.module method

2002-05-05 Thread Matthew Sherborne
Try Passing \x00 characters in one long string to split it up into many little strings. eg: >>> lst = ['bacon', 'egg', 'ham'] >>> str = '\00'.join(lst) >>> str 'bacon\x00egg\x00ham' >>> str += '\00' >>> str 'bacon\x00egg\x00ham\x00' >>> ___ ActivePy