RE: Newbie question involving buffered input

2006-09-01 Thread Caolan
On Fri, 1 Sep 2006 09:31:11 -0700, Caolan <[EMAIL PROTECTED]> wrote:>I am executing the code below on a Windows XP system and if I enter > 2 characters it buffers the input and the call to sys.stdin.flush does not flush the input, it remains buffered.You cannot flush input.  The

Newbie question involving buffered input

2006-09-01 Thread Caolan
I am executing the code below on a Windows XP system and if I enter > 2 characters it buffers the input and the call to sys.stdin.flush does not flush the input, it remains buffered.   What am I doing wrong here?   Thanks,   Caolan       try:    gooberselectX = sys.stdin.rea

How to include and use a .NET DLL and namespace.

2006-08-31 Thread Caolan
Hello,   I am in need of importing in a .NET namespace from a built DLL. How do I get Python to pickup and recognise the namespace and classes in the DLL?   Thanks,   Caolan O'Domhnaill-- http://mail.python.org/mailman/listinfo/python-list

RE: Best Editor

2006-08-24 Thread Caolan
Title: Re: Best Editor I like ActiveState's KOMODO editor. It is multilanguage compiler editor. Its not free but it is inexpensive for what it does, IMO. I believe they have a 30day free trial and a version for both platforms you mentioned.   -Caolan. From: [EMAIL PROTECTED] on b

RE: in-memory-only file object from string

2006-08-23 Thread Caolan
Title: in-memory-only file object from string The mmap module should do what you are looking for. It allows you to store data in memory (hence the name memory map) and treat it as both a string and a file. From: [EMAIL PROTECTED] on behalf of bobrikSent: Wed 8/23/2006 2:56 PMTo: python

RE: Newbie questions for Python usage

2006-08-22 Thread Caolan
o avoid the usage of .cmd or .bat files altogether. Thanks!   -Caolan O'Domhnaill From: [EMAIL PROTECTED] on behalf of Fredrik LundhSent: Tue 8/22/2006 4:08 PMTo: python-list@python.orgSubject: Re: Newbie questions for Python usage Caolan wrote:>    1. I understand HOW to use the l

Newbie questions for Python usage

2006-08-22 Thread Caolan
itself. Thanks for the help all! Caolan-- http://mail.python.org/mailman/listinfo/python-list