[EMAIL PROTECTED] writes:
> > > It should be _reg_progid_ not _reg_progid. Try again with the
> > correct spelling.
>
> I'm quite new to python (though, horrors, a devout perl groupie) but
> I've seen 2 or 3 of these sorts of 'catches' on this list - does
> python have a way to alert you to miss
[[EMAIL PROTECTED] wrote]
>
> Hello there,
>
> I am using PythonWin from the Active Python 2.2.1
> It stroke me that the "Find" and "find & replace"
> dialogs only accept strings less than 30 characters long.
> Is it the way I use it or is this a real limitation?
> How comes that nobody complain
[Elkins, Michael wrote]
> Are the win32 extensions available as a separate download? Are they covered
> by the same license as ActivePython? Does anyone know?
The win32 extension are available as a separate download here:
http://starship.python.net/~skippy/win32/
They are covered by a diff
Hello there,
I am using PythonWin from the Active Python 2.2.1
It stroke me that the "Find" and "find & replace"
dialogs only accept strings less than 30 characters long.
Is it the way I use it or is this a real limitation?
How comes that nobody complained about this before?
Adrian.
_
Are the win32 extensions available as a separate download? Are they covered
by the same license as ActivePython? Does anyone know?
--Mike Elkins
___
ActivePython mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/my
[[EMAIL PROTECTED] wrote]
> > > It should be _reg_progid_ not _reg_progid. Try again with the
> > correct spelling.
>
> I'm quite new to python (though, horrors, a devout perl groupie) but I've
> seen 2 or 3 of these sorts of 'catches' on this list - does python have a
> way to alert you to mis
> > It should be _reg_progid_ not _reg_progid. Try again with the
> correct spelling.
I'm quite new to python (though, horrors, a devout perl groupie) but I've
seen 2 or 3 of these sorts of 'catches' on this list - does python have a
way to alert you to misspelling like that? In perl, for exam
Hi,
Is it possible to send output continuously to a web browser?.
For example I have the following code
>>> import httplib
>>> h = httplib.HTTP('www.cwi.nl')
>>> h.putrequest('GET', '/index.html')
>>> h.putheader('Accept', 'text/html')
>>> h.putheader('Accept', 'text/plain')
>>> h.endheaders()
I