Re: [BangPypers] Extracting zipfile

2010-05-31 Thread Jeffrey Jose
Correct me if I'm wrong but tab-completion doesn't work out of the box for standard python interpreter. On Mon, May 31, 2010 at 11:05 AM, Noufal Ibrahim nou...@gmail.com wrote: On Mon, May 31, 2010 at 8:32 AM, Jeffrey Jose jeffjosej...@gmail.com wrote: Dear Murugadoss, If you're starting

Re: [BangPypers] Extracting zipfile

2010-05-31 Thread Senthil Kumaran
On Mon, May 31, 2010 at 02:55:12PM +0530, Jeffrey Jose wrote: Correct me if I'm wrong but tab-completion doesn't work out of the box for standard python interpreter. You are right. Tab Completion does not work out of box for standard python interpreter. But IDLE has auto-completion on . (os.

Re: [BangPypers] Extracting zipfile

2010-05-31 Thread Noufal Ibrahim
On Mon, May 31, 2010 at 2:55 PM, Jeffrey Jose jeffjosej...@gmail.com wrote: Correct me if I'm wrong but tab-completion doesn't work out of the box for standard python interpreter. Not by default but you need to stick 2 or 3 lines into your startup file to get it going. -- ~noufal

Re: [BangPypers] Extracting zipfile

2010-05-31 Thread Shiv Shankar
You could try Dream Pie, its from the same guy who worked on code completion for idle. Its a pretty cool replacement for both IDLE and out of the box interpreter. -- shiv ___ BangPypers mailing list BangPypers@python.org

Re: [BangPypers] Extracting zipfile

2010-05-31 Thread S.Ramaswamy
Not by default but you need to stick 2 or 3 lines into your startup file to get it going. -- Tab completion with the standard interpreter doesn't work on Windows even with those 2-3 lines in the startup file - GNU Readline doesn't work on Windows AFAIK. With IPython you can get it working

Re: [BangPypers] Extracting zipfile

2010-05-30 Thread Roshan Mathews
On Mon, May 31, 2010 at 05:56, murugadoss murugadoss2...@gmail.com wrote: zipfile.extractall(home/murugadoss/testfile.zip) Traceback (most recent call last):  File stdin, line 1, in module AttributeError: 'module' object has no attribute 'extractall'

Re: [BangPypers] Extracting zipfile

2010-05-30 Thread Jeffrey Jose
Dear Murugadoss, If you're starting out Python, I highly recommend IPython ( http://ipython.scipy.org/moin/ ). With its excellent tab completion, you would never run into an AttributeError /jeff On Mon, May 31, 2010 at 7:30 AM, Roshan Mathews rmath...@gmail.com wrote: On Mon, May 31, 2010

Re: [BangPypers] Extracting zipfile

2010-05-30 Thread Senthil Kumaran
On Mon, May 31, 2010 at 08:32:01AM +0530, Jeffrey Jose wrote: Dear Murugadoss, If you're starting out Python, I highly recommend IPython ( http://ipython.scipy.org/moin/ ). With its excellent tab completion, you would never run into an AttributeError I doubt. We better recommend him to