Re: Figuring out what dependencies are needed

2013-12-11 Thread sal i
On Thursday, December 12, 2013 1:48:42 PM UTC+8, alex23 wrote: > On 11/12/2013 10:44 PM, s...@nearlocal.com wrote: > > > I'm a Python beginner. I want to use it for stats work, so I downloaded > > Anaconda which has several of the popular libraries already packaged for > > Mac OS X. > > > > >

Figuring out what dependencies are needed

2013-12-11 Thread sal
I'm a Python beginner. I want to use it for stats work, so I downloaded Anaconda which has several of the popular libraries already packaged for Mac OS X. Now I'd like to use the backtesting package from zipline (zipline.io), but while running the test script in iPython, I receive the followin

Re: The end to all language wars and the great unity API to come!

2011-07-08 Thread sal migondis
On Jul 6, 7:45 am, Steven D'Aprano wrote: > sal migondis wrote: > > How could a belief be wrong? > I believe... Shifting from 'belief' to 'believe', the latter having a considerably wider semantic scope. After that, anything goes.. naturally. >

Re: The end to all language wars and the great unity API to come!

2011-07-05 Thread sal migondis
e value of > diversity to you. Now you're taking a troll as an excuse for your own trolling. > No need to answer that last one, we already know the answer: from the > very beginning. In the beginning was a singularity... and Albert Einstein was a chain- smoker. Sal. -- http://mail.python.org/mailman/listinfo/python-list

Re: English Idiom in Unix: Directory Recursively

2011-05-26 Thread sal migondis
On Thu, May 26, 2011 at 12:28 PM, sal migondis wrote: > From: Thorsten Kampe > Subject: Re: English Idiom in Unix: Directory Recursively > Date: Thu, 26 May 2011 12:46:58 +0200 > To: python-list@python.org > > * Steven D'Aprano (26 May 2011 10:06:44 GMT) >> >>

Re: Python IDE/text-editor

2011-04-17 Thread sal migondis
t is the difference between a _real_ friend a passing acquaintance. Sal. -- http://mail.python.org/mailman/listinfo/python-list

using modules

2010-09-06 Thread Sal Lopez
The following code runs OK under 3.1: @filename=cats_and_dogs.py #!/usr/bin/python def make_sound(animal): print(animal + ' says ' + sounds[animal]) sounds = { "cat": "meow", "dog": "woof" } for i in sounds.keys(): make_sound(i) # output: # dog says woof # cat says meow When I move t

Remove old version before upgrade?

2008-04-24 Thread Sal
I'm currently running Windows version 2.5.1 and would like to upgrade to 2.5.2. My question is, can I just go ahead and install the new version over the old or should I remove the old version with add/ remove programs first? The old version is in a directory named Python25. -- http://mail.python.or

Newbie: unsigned shift right

2008-03-26 Thread Sal
Is there any way to do an unsigned shift right in Python? When I enter (-1>>1) the answer is -1. What I'm looking for is the equivalent of an unsigned shift in C or the ">>>" operator in Java. -- http://mail.python.org/mailman/listinfo/python-list