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 wo

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 http://mail.python.org/mailman/li

Re: [BangPypers] Extracting zipfile

2010-05-31 Thread Noufal Ibrahim
On Mon, May 31, 2010 at 2:55 PM, Jeffrey Jose 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 http://nibrahim.net.in __

Re: [BangPypers] Extracting zipfile

2010-05-31 Thread Anand Balachandran Pillai
On Mon, May 31, 2010 at 2:55 PM, Jeffrey Jose 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 it is quite easy to enable. http://docs.python.org/library/rlcompleter.html > > -- --Anand __

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. w

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 wrote: > On Mon, May 31, 2010 at 8:32 AM, Jeffrey Jose > wrote: > > Dear Murugadoss, > > > > If you're starting out Python, I highly recommend

Re: [BangPypers] Extracting zipfile

2010-05-30 Thread Noufal Ibrahim
On Mon, May 31, 2010 at 8:32 AM, 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" -1. Tab completion is there in the standar

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

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 wrote: > On Mon, May 31, 2010 at 05:56, muruga

Re: [BangPypers] Extracting zipfile

2010-05-30 Thread Roshan Mathews
On Mon, May 31, 2010 at 05:56, murugadoss wrote: zipfile.extractall("home/murugadoss/testfile.zip") > Traceback (most recent call last): >  File "", line 1, in > AttributeError: 'module' object has no attribute 'extractall' http://docs.python.org/library/zipfile.html#zipfile.ZipFile.extract

[BangPypers] Extracting zipfile

2010-05-30 Thread murugadoss
Hi, I am trying to extract a zipfile, using zipfile.extractall(). when i do so, i am getting an error as "AttributeError: 'module' object has no attribute 'extractall' " >>> zipfile.extractall("home/murugadoss/testfile.zip") Traceback (most recent call last): File "", line 1, in AttributeErro