Does this list have digest mode?

2002-04-26 Thread Noah
sages. I would have sent this to a list administrator, but there is none listed on the list management web page. Yours, Noah ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

RE: was (no subject) + new thread

2002-04-25 Thread Noah
Like what sort of problems? I always found the Windows installation to be pretty easy -- both the regular Python.org Windows distriution and the ActiveState Windows distribution. Generally I prefer the ActiveState version because it insclude the Win32 COM stuff. Noah -Original Message

Re: How to remove a newline character

2002-04-08 Thread Noah Spurrier
and lambda on the brain. Thanks, Noah - Original Message - From: "Jeff Shannon" <[EMAIL PROTECTED]> To: "activepython list" <[EMAIL PROTECTED]> Sent: Monday, April 08, 2002 10:22 AM Subject: Re: How to remove a newline character > > Noah Spurrier w

Re: How to remove a newline character

2002-04-08 Thread Noah Spurrier
thought lambda expression were hard to read (mainly I think 'lambda' is an obscure name for most non-computer science majors) , but at any rate it is a useful syntax to learn. Yours, Noah - Original Message - From: "A" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>

Re: pissed newbie: why wont this function work

2002-04-05 Thread Noah Spurrier
__ as '__main__' when the script is being run immediately from the interpreter; otherwise, if this module is imported then __name__ is defined as the name of the module. Noah - Original Message - From: "Paul Osman" <[EMAIL PROTECTED]> To: "Jose Guevarra" &

RE: How to get a key from dictionary?

2002-03-25 Thread Noah Spurrier
y is one-to-one. For example, this dictionary would not work: dict1=['aa':1, 'bb':1] Yours, Noah > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of A > Sent: Monday, March 25, 2002 2:16 PM > To: [EMAIL PROTECT

Calling Python from Access (WSH or ActiveX Scripting ?)

2002-02-13 Thread Noah Spurrier
Scripting or WSH? From what I could figure out only IE and IIS support ActiveX Scripting. I don't know much about WSH, but it seemed relevant :-) Yours, Noah ___ ActivePython mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveStat

Creating a user with Python

2001-10-24 Thread Noah
ience with WMI and Python? Yours, Noah ___ ActivePython mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/activepython

Re: "Streaming" CGI output

2001-06-29 Thread Noah
This is a buffering issue. Flush stdout: sys.stdout.flush() after every print call. Be sure to import sys first. Yours, Noah - Original Message - From: "Joshua Hewitt" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 29, 2001 5:53 AM Subject: "

Need jumpstart forclient HTTPS for Windows and Python

2001-06-07 Thread Noah
se()     print page   Yours, Noah  

Re: Perl EX for python?

2001-04-25 Thread Noah
mooth integration. Yours, Noah - Original Message - From: "Steve Drees" <[EMAIL PROTECTED]> To: "Noah" <[EMAIL PROTECTED]>; "Brian Smith" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, April 25, 2001 4:39 PM Subject: RE: Perl EX fo

Re: Perl EX for python?

2001-04-25 Thread Noah
e seems to have every feature advertised by PerlEX. Yours, Noah - Original Message - From: "Brian Smith" <[EMAIL PROTECTED]> To: "activepython" <[EMAIL PROTECTED]> Sent: Wednesday, April 25, 2001 3:12 PM Subject: Perl EX for python? > Is there an

enumerating workgroups and shares

2001-04-09 Thread Noah
;m trying to write a NT Domain network spider. Yours, Noah For example, from the command line at the Windows Command Prompt I can do this sort of stuff: C:\>net view /domain Domain - WORKGROUP The command completed successfully. C:\>ne

RE: Antwort: ActivePython digest, Vol 1 #72 - 4 msgs

2001-01-31 Thread Noah
outfile = open ('foo', 'ab') That's 'a' for 'append'. You may want to use 'ab' for WindowsNT. That's 'append binary'. Yours, Noah -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMA

RE: pythoncom and mshtml

2001-01-18 Thread Noah
;credits" or "license" for more information. >>> import win32com.client >>> o = win32com.client.Dispatch('htmlfile') >>> o >>> o.createDocumentFromUrl >>> doc = o.cre