Re: Python is slow

2008-06-07 Thread Sean Allen
On May 24, 2008, at 1:56 AM, cm_gui wrote: okay, maybe Python is only slightly slower than PHP, but it APPEARS to be much slower. there is a distinct waiting time whenever you access a python web page before the page starts loading. but once it loads, it is fast. php page starts loading

Re: What Programming Languages Should You Learn Next?

2008-03-19 Thread Sean Allen
Haven't found that killer problem so far ... for Haskell, check out HAppS. They have some great web application stuff going on. -- http://mail.python.org/mailman/listinfo/python-list

Re: Urgent : How to do memory leaks detection in python ?

2008-03-17 Thread Sean Allen
On Mar 17, 2008, at 3:21 AM, Pradeep Rai wrote: Thanks for your inputs !!! I have installed python v 2.5 on my Linux machine and executing the tool again. I would like to share the memory status( using free -m command ) before and after the execution of the tool. BEFORE EXECUTION

Re: Apache binary error?

2008-03-17 Thread Sean Allen
On Mar 17, 2008, at 10:55 AM, Michael Wieher wrote: have simple webpage running apache, mod_python the error is binary ...binary as in every other time I load the page, Firefox keeps telling me I'm downloading a python script, and asks to open it in WINE, which is really strange.

Re: mod_python Unable to create file

2008-03-02 Thread Sean Allen
On Mar 2, 2008, at 3:24 AM, kaush wrote: On Mar 1, 11:24 pm, Marc 'BlackJack' Rintsch [EMAIL PROTECTED] wrote: On Sat, 01 Mar 2008 22:47:02 -0800, kaush wrote: I am using Apache and mod_python to service POST/GET requests on MAC OS. My script tries to create a file file = open(file_path,

Re: package import

2008-02-06 Thread Sean Allen
Thanks. Found that 10 minutes after I sent. On Feb 6, 2008, at 4:57 AM, Diez B. Roggisch wrote: Sean Allen wrote: ok, what am i doing wrong? in current working directory i have: t.py sub/t1.py t.py is: import sub.t1 i get: ImportError: No module named sub.t1 t.py is import

package import

2008-02-05 Thread Sean Allen
ok, what am i doing wrong? in current working directory i have: t.py sub/t1.py t.py is: import sub.t1 i get: ImportError: No module named sub.t1 t.py is import sub i get: ImportError: No module named sub.t1 -- i am obviously missing something really basic here. have tried on multiple