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

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. Now I'd

[issue13071] IDLE refuses to open on windows 7

2011-10-03 Thread jfalskfjdsl;akfdjsa;l laksfj;aslkfdj;sal
jfalskfjdsl;akfdjsa;l laksfj;aslkfdj;sal christopherdar...@gmail.com added the comment: ok i have solved the problem it was the same as issue 4765 -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13071

[issue13071] IDLE refuses to open on windows 7

2011-10-02 Thread jfalskfjdsl;akfdjsa;l laksfj;aslkfdj;sal
jfalskfjdsl;akfdjsa;l laksfj;aslkfdj;sal christopherdar...@gmail.com added the comment: Traceback (most recent call last): File C:\Python32\Lib\idlelib/idle.py, line 11, in module idlelib.PyShell.main() File C:\Python32\Lib\idlelib\PyShell.py,line 1377, in main shell

[issue13071] IDLE refuses to open on windows 7

2011-10-02 Thread jfalskfjdsl;akfdjsa;l laksfj;aslkfdj;sal
jfalskfjdsl;akfdjsa;l laksfj;aslkfdj;sal christopherdar...@gmail.com added the comment: That is the traceback given when I run idle.py through windows command prompt -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13071

[issue13071] IDLE refuses to open on windows 7

2011-09-29 Thread jfalskfjdsl;akfdjsa;l laksfj;aslkfdj;sal
New submission from jfalskfjdsl;akfdjsa;l laksfj;aslkfdj;sal christopherdar...@gmail.com: I have tried all ways of opening IDLE and have uninstalled and reinstalled Python, but when I try to open it it crashes before anything happens -- components: IDLE messages: 144657 nosy

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 steve +comp.lang.pyt...@pearwood.info 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. you are a small

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

2011-07-05 Thread sal migondis
wasting my time pushing the value of diversity to you. Now you're taking a troll as an excuse for your own trolling. snip 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

Re: English Idiom in Unix: Directory Recursively

2011-05-26 Thread sal migondis
On Thu, May 26, 2011 at 12:28 PM, sal migondis salmi...@gmail.com wrote: From: Thorsten Kampe thors...@thorstenkampe.de 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
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 the def

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

Newbie: unsigned shift right

2008-03-26 Thread Sal
Is there any way to do an unsigned shift right in Python? When I enter (-11) 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