Make 1million in 6 weeks or less

2007-02-12 Thread Sam Wortzberg
Legal Consultants http://legal-rx.blogspot.com/index.html will show you how to make 1 million in less than 6 weeks! -- http://mail.python.org/mailman/listinfo/python-list

Re: multiple inheritance of a dynamic list of classes?

2007-02-12 Thread devicerandom
Thanks both for suggestions. I still think that using inheritance is somehow cleanest in this case (I always hear the mantra "avoid multiple inheritance!", but this is one of the cases it seems to make a lot of sense to me), but it's nice food for thought/code anyway. Other suggestions are always

Re: star_new_thread

2007-02-12 Thread worlman385
Simpified the code to use FUNCTION only without CLASS http://chiu424.hypermart.net/code5-demo2.py.txt (short version) the above code start a new thread to run the function that send / receive data to socket, but still hangs at the timeout_h function forever == htt

Re: Vim scripting with python

2007-02-12 Thread Ben Finney
"J. Clifford Dyer" <[EMAIL PROTECTED]> writes: > Which versions of vim is this valid for? I tried ":py print 'Hello'", > and got "E319: Sorry, the command is not available in this version" The ability of Vim to run Python commands is one of many optional features that can be enabled or disabled

Re: Newbie Question

2007-02-12 Thread Paul Hummer
Stef Mientki wrote: > Oh I forgot that, ... > ... in Delphi you don't have to choose ;-) Dang it! I hate it when they give me choices like that! Paul -- http://mail.python.org/mailman/listinfo/python-list

Re: Gosper arithmetic in Python

2007-02-12 Thread Subscriber123
Speaking of useful home-made modules, I wrote this primitive module which does limited math with fractions. Anyone is welcome to expand on it or use it for any purpose. If anyone would like to submit it as a PEP to be added to the Python library of reference, that would be great. If anyone wishes

Testers please

2007-02-12 Thread martien friedeman
I have written this tool that allows you to look at runtime data and code at the same time. And now I need people to test it. The easiest way to see what I mean is to look at some videos: http://codeinvestigator.googlepages.com/codeinvestigator_videos It requires Apache and Sqlite. It works fo

Re: Gosper arithmetic in Python

2007-02-12 Thread Subscriber123
By the way, there are some commented out portions of code in there which you can just remove, if you want. The last two lines of the program are unnecessary, as well. On 2/12/07, Subscriber123 <[EMAIL PROTECTED]> wrote: Speaking of useful home-made modules, I wrote this primitive module which d

Re: Testers please

2007-02-12 Thread azrael
I took a first look on the video. Amazing. I love it. You got a tester good job, man // but one thing, why not zope and postgre? martien friedeman je napisao/la: > I have written this tool that allows you to look at runtime data and > code at the same time. > And now I need people to test it. >

python mms library

2007-02-12 Thread mark
Hi Is there a library for creating mms message in python? thanks mark -- http://mail.python.org/mailman/listinfo/python-list

Re: c++ for python programmers

2007-02-12 Thread Andy Terrel
On Feb 12, 4:11 pm, "Thomas Nelson" <[EMAIL PROTECTED]> wrote: > On Feb 12, 1:35 pm, andrew clarke <[EMAIL PROTECTED]> wrote: > > > Thomas, I sent you a message off-list but it bounced due to your mailbox > > being full. > > > Short answer: Subscribe to the [EMAIL PROTECTED] mailing list and > > as

Re: can't find a way to display and print pdf through python.

2007-02-12 Thread Grant Edwards
On 2007-02-12, Larry Bates <[EMAIL PROTECTED]> wrote: > Grant Edwards wrote: >> On 2007-02-12, Larry Bates <[EMAIL PROTECTED]> wrote: >>> On 2007-02-12, Larry Bates <[EMAIL PROTECTED]> wrote: >> I at least need the code for useing some library for >> connecting to acrobat reader and giving

how to compare...

2007-02-12 Thread jairodsl
Hello everybody ! I have two list, they are, S1=['A','B','C','D','E'], and S2=['F','G','H','I','J'], but i have to compare both in this way: A vs J A vs I, B vs J A vs H, B vs I, C vs J A vs G, B vs H, C vs I, D vs J

MacPython wiki "moved" to Python wiki - now it's your turn...

2007-02-12 Thread skip
After much wailing and gnashing of teeth the past couple of days, I managed to move (most of?) the content from the MacPython wiki to the main Python wiki (*). All pages were created as subpages of http://wiki.python.or/moin/MacPython The motivation for this rather hasty move was that the M

get pid of a nohup command in Python

2007-02-12 Thread g . willgoose
I'm new to Python and am evaluating moving a project from Tcl/Tk to Python and am stuck on one issue. How can I nohup (or any detached task for that matter) a process and get its PID in Python. The obvious route of (with a trivial example) os.system("nohup ls > junk &") returns the status of the

Re: how to compare...

2007-02-12 Thread James Stroud
jairodsl wrote: > Hello everybody ! > > > I have two list, they are, S1=['A','B','C','D','E'], and > S2=['F','G','H','I','J'], but i have to compare both in this way: > > A vs J > A vs I, B vs J > A vs H, B vs I, C vs J > A

Re: how to compare...

2007-02-12 Thread attn . steven . kuo
On Feb 12, 8:03 pm, "jairodsl" <[EMAIL PROTECTED]> wrote: > Hello everybody ! > > I have two list, they are, S1=['A','B','C','D','E'], and > S2=['F','G','H','I','J'], but i have to compare both in this way: > > A vs J > A vs I, B vs J > A vs H,

Re: how to compare...

2007-02-12 Thread Gabriel Genellina
En Tue, 13 Feb 2007 01:03:07 -0300, jairodsl <[EMAIL PROTECTED]> escribió: > I have two list, they are, S1=['A','B','C','D','E'], and > S2=['F','G','H','I','J'], but i have to compare both in this way: > > A vs J > A vs I, B vs J > A vs H, B v

Re: get pid of a nohup command in Python

2007-02-12 Thread Gabriel Genellina
En Tue, 13 Feb 2007 01:52:57 -0300, <[EMAIL PROTECTED]> escribió: > I'm new to Python and am evaluating moving a project from Tcl/Tk to > Python and am stuck on one issue. How can I nohup (or any detached > task for that matter) a process and get its PID in Python. The obvious > route of (with a

Re: how to compare...

2007-02-12 Thread James Stroud
James Stroud wrote: > jairodsl wrote: > >> Hello everybody ! >> >> >> I have two list, they are, S1=['A','B','C','D','E'], and >> S2=['F','G','H','I','J'], but i have to compare both in this way: >> >> A vs J >> A vs I, B vs J >> A vs H, B vs

Re: Testers please

2007-02-12 Thread James Stroud
martien friedeman wrote: > I have written this tool that allows you to look at runtime data and > code at the same time. > And now I need people to test it. > > The easiest way to see what I mean is to look at some videos: > http://codeinvestigator.googlepages.com/codeinvestigator_videos > > It

Weekly Python Patch/Bug Summary

2007-02-12 Thread Kurt B. Kaiser
Patch / Bug Summary ___ Patches : 417 open ( -6) / 3565 closed (+12) / 3982 total ( +6) Bugs: 960 open ( -3) / 6498 closed (+19) / 7458 total (+16) RFE : 266 open ( +6) / 251 closed ( +1) / 517 total ( +7) New / Reopened Patches __ stream wr

Newbie question about Class

2007-02-12 Thread JStoneGT
I'm reading the book of "Dive into Python" and got these code pieces: class UserDict: def __init__(self, dict=None): self.data = {} if dict is not None: self.update(dict) My question is,for the statement of: if dict is not None: self.update(dic

<    1   2