First  |  Prev |  Next  |  Last
Pages: 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
Python daemonisation with python-daemon
Hello there, I currently have a little project which involve the writing of a server that launch tasks when requested by the user (through a web interface for instance). I would like to turn my server script into a Linux/Unix daemon (launched at boot time by init, dunno if that matter) using the nice python-d... 1 May 2010 07:37
ANN: Wing IDE 3.2.6 released
Hi, Wingware has released version 3.2.6 of Wing IDE, an integrated development environment designed specifically for the Python programming language. This release includes the following minor features and improvements: * Added Copy to Clipboard in Source Assistant * Added ability to clear Python Shell during... 30 Apr 2010 10:34
Accessing an instance of a class from within instance of anotherclass
Am 30.04.2010 13:05, schrieb Stefan Krastanov: Hello all, [snipp] Here is the problem: I have a class (call it Data) that has a number of NumPy arrays and some methods that get useful information from the arrays (math stuff). I have two other classes (called Viewer1 and Viewer2) (they are subclasses... 30 Apr 2010 10:34
Cross-platform way to retrieve the current (Operative system)DNS server IP address in python
joamag wrote: It's not my ip address that I want to discover... I want to discover my default dns server ip address. This ip is stored in an operative system basis. Dos anyone know how to get it ? You asked for a cross-platform solution; there probably isn't one. The code below works on Unix and... 30 Apr 2010 06:11
RESOLVED Re: dll errors in compiled python program
Thanks for the suggestion. It turns out that the problem was a copy of fowprof.dll, or something like that, which win7 included in my compiled program's dir. I was testing the program on xp, which has its own version of this dll, so deleting the dll from the dir solved it. On 4/29/10, alex23 <wuwei23(a)gmail.com> w... 29 Apr 2010 23:39
Komodo Edit: Editor settings?
Komodo Edit 5.1 I would very much like to stop code from expanding automatically. Like when several consecutive lines of code have a plus sigh in the left margin, meaning they are collapsed, when I go to copy or cut one of those collapsed lines, the collapsed lines that follow that line automatically expand.... 29 Apr 2010 23:39
Performance of list.index - how to speed up a silly algorithm?
I have some ten thousand rows in a table. E.g. columns = ["color","size","weight","value"] rows = [ [ "Yellow", "Big", 2, 4 ], [ "Blue", "Big", 3, -4 ], [ "Blue", "Small", 10, 55 ], ... ] Some columns are dimensions, others are measures. I want to convert this to an indexed version, th... 1 May 2010 08:42
Email attachment problem
Hi there, I want to send an email with an attachment using the following code (running under Python 3.1, greatly simplified to show example) from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText msg = MIMEMultipart() msg['From'] = from_addr msg['To'] = to_... 29 Apr 2010 16:55
Issues while building pyfsevents in python 3.1
On 4/29/2010 2:30 AM, mathan kumar wrote: I m trying port pyfsevents coded in python2.6 to python3.1. Specifying system and compiler/version might help responders. ... 30 Apr 2010 12:49
array matching
Bill Jordan wrote: Hey guys, I am sorry if this is not the right list to post some questions. I have a simple question please and would appreciate some answers as I am new to Python. I have 2 D array: test = [[A,1],[B,2],[A,3][B,4]] I want to arrang this array in different arrays so each o... 30 Apr 2010 06:11
First  |  Prev |  Next  |  Last
Pages: 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140