Re: What people are using to access this mailing list

2010-11-03 Thread Jed Smith
y good at creating filters. For example, on most lists (particularly Mailman), I can hit "Filter messages like this", and Gmail automatically harvests the List header and writes a filter for it. I just prefer the Gmail philosophy to mail, with tags that are *like* folders but not really.

Re: annoying CL echo in interactive python / ipython

2010-10-19 Thread Jed Smith
On Tue, Oct 19, 2010 at 3:33 PM, Hrvoje Niksic wrote: > Jed Smith writes: > >>>     echo (-echo) >>>                 Echo back (do not echo back) every character typed. >> >> I'm going to guess that the percent sign in your prompt indicates that &

Re: annoying CL echo in interactive python / ipython

2010-10-19 Thread Jed Smith
On Tue, Oct 19, 2010 at 2:35 PM, kj wrote: > In Jed Smith > writes: > >>On Tue, Oct 19, 2010 at 1:37 PM, kj wrote: > >>> % stty -echo > >>That doesn't do what you think it does. > > Gee, thanks.  That really helped.  I'll go talk to my

Re: annoying CL echo in interactive python / ipython

2010-10-19 Thread Jed Smith
On Tue, Oct 19, 2010 at 1:37 PM, kj wrote: > % stty -echo That doesn't do what you think it does. -- Jed Smith j...@jedsmith.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Python default search paths

2010-10-19 Thread Jed Smith
t operate just like this. [1]: http://docs.python.org/library/sys.html -- Jed Smith j...@jedsmith.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Missing modules for python

2010-10-12 Thread Jed Smith
On Mon, Oct 11, 2010 at 7:02 PM, Steven D'Aprano wrote: > On Mon, 11 Oct 2010 10:32:44 -0400, Jed Smith wrote: > >> simplejson got merged into the standard library in Python 2.6. In >> libcloud, I wrote this: >> >>   try: import json >>   except Imp

Re: help!!!

2010-10-11 Thread Jed Smith
On Mon, Oct 11, 2010 at 5:02 PM, Seebs wrote: > and something like scanf(), where I've never heard of a compiler doing > anything of the sort. By default, MSVC complains hard enough when using scanf() to make you regret it (I think? been a while). -- Jed Smith j...@jedsmith.o

Re: Python deadlocks when Popen in multithread.

2010-10-11 Thread Jed Smith
ou directly call worker(), does it succeed? I suspect the threading is a red herring here. -- Jed Smith j...@jedsmith.org -- http://mail.python.org/mailman/listinfo/python-list

Re: Standardizing RPython - it's time.

2010-10-11 Thread Jed Smith
On Mon, Oct 11, 2010 at 4:01 PM, John Nagle wrote: > file:///C:/Users/nagle/AppData/Local/Temp/shedskin-tutorial-0.3.html This gives me a 404. Your Web server is broken! Fix it! ;) Temporarily mirrored: http://jedsmith.org/tmp/shedskin-tutorial-0.5.html -- Jed Smith j...@jedsmith.

Re: Can't find pythonwin

2010-10-11 Thread Jed Smith
On Mon, Oct 11, 2010 at 3:46 AM, Dennis Lee Bieber wrote: > On Sun, 10 Oct 2010 20:33:09 -0400, Jed Smith > declaimed the following in gmane.comp.python.general: > >> >> As far as I know, Pythonwin is a collection of extensions to Python >> that are available

Re: Missing modules for python

2010-10-11 Thread Jed Smith
Message', > 'email.Utils', 'simplejson', 'socks'] > > I am using Python  2.6 simplejson got merged into the standard library in Python 2.6. In libcloud, I wrote this: try: import json except ImportError, excp: import simplejson as json Is

Re: Can't find pythonwin

2010-10-10 Thread Jed Smith
"Pythonwin", this might be of use: http://docs.python.org/faq/windows#how-do-i-run-a-python-program-under-windows -- Jed Smith j...@jedsmith.org -- http://mail.python.org/mailman/listinfo/python-list

Re: [Python-ideas] [Python-Dev] Inclusive Range

2010-10-08 Thread Jed Smith
L[0] into the reversed slice. > > > >>>> L = [1, 2, 3, 4, 5] >>>> L[5:-6:-1] > [5, 4, 3, 2, 1] >>> a = [1, 2, 3, 4, 5, 6] >>> a[::-1] [6, 5, 4, 3, 2, 1] -- Jed Smith j...@jedsmith.org -- http://mail.python.org/mailman/listinfo/python-list