Re: [Tutor] py in a nut

2005-10-25 Thread Damien Gouteux
In french, 'Python précis & concis', from O'Reilly is now out : from Mark Lutz, it covers python 2.4 (and decorators). I assume there is a english edition of this book. Frank Moore wrote: Kent Johnson wrote: Have you looked at Python Cookbook 2E? Chapter 19 is "Iterators and Gene

Re: [Tutor] IDLE will not appear under Win95 (Python 2.4.2)

2005-10-15 Thread Damien Gouteux
Try to right-click on a python file and click 'Edit with IDLE'. IDLE doesn't work without a file in argument. I hope it will help you. Damien G. Dave Shea wrote: >Hi, > >I'm very new to Python. Today I downloaded the python-2.4.2.msi file from >www.python.org > >I had previously installed the u

Re: [Tutor] Calling Modules in ActiveState 2.4

2005-09-21 Thread Damien Gouteux
For exit: You need to put an argument (more input) : import sys sys.exit(0) The argument of exit is the return value of your script (0 = okay, other = problem). sys.path is an attribute (of type list) of sys not a function. So don't put () after path. I hope it will help. Damien. Bob Nienhuis

[Tutor] Venom / Python23.dll missing

2005-09-11 Thread Damien Gouteux
Hi all. I try to run Venom, a Python binding for the Irrlicht engine. But I need python23.dll. This dll is generated by py2exe, but I have only Python 2.4 installed on my PC, so I can have only python24.dll. If somebody could give a link to grap it, I will be pleased. Thank you. Damien G. __