[issue1659705] Python extension problems after re-install

2010-09-16 Thread elf
elf elfin2...@users.sourceforge.net added the comment: Yeah this was fixed a long time ago thanks :) -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1659705

Gray Hat Python: Python Programming for Hackers Soft copy

2009-11-20 Thread Elf Scripter
Hi i`m looking for a place to get a soft copy of 'Gray Hat Python: Python Programming for Hackers' may be a pdf or chm format. Thank you -- http://mail.python.org/mailman/listinfo/python-list

Running Invisible console Application

2009-06-29 Thread Elf Scripter
Hi, i have a console application that i want to ran (invisible) as a daemon, how can i do that? Thank you in advance. -- http://mail.python.org/mailman/listinfo/python-list

Creating an Instance Messenger type of application

2009-06-29 Thread Elf Scripter
Hello,Has anyone created an Instance Messenger in Python before, i mean a simple or Complex GUI based instance messenger? I thought about something like, the client also act as server, has it`s own listening port, but how can i handle uer auth? and adding visual effects to it. Please i am not

Re: 3 number and dot..

2007-10-31 Thread elf
On Oct 31, 9:58 pm, Abandoned [EMAIL PROTECTED] wrote: Hi.. I want to do this: for examle: 12332321 == 12.332.321 How can i do? If you want do define your own function this will work, no matter how long the number is, or what separator you choose: def conv(s, sep='.'): start=len(s)%3

Re: 3 number and dot..

2007-10-31 Thread elf
On Oct 31, 9:58 pm, Abandoned [EMAIL PROTECTED] wrote: Hi.. I want to do this: for examle: 12332321 == 12.332.321 How can i do? Hi, If you want to define your own function, no matter what the length of the number is or what separator you want to choose, this will work: def conv(s,