Forum: Python May 8th, 2008 |
| Replies: 1 Views: 984 Hey guys, I'm trying to get a socket to work, but this code doesn't seem to fire.
#!/usr/bin/python
import sys
import os
import socket
serverHost = 'localhost' # servername is... |
Forum: Python Apr 19th, 2008 |
| Replies: 1 Views: 398 Hey guys, I've been playing around all morning trying to get this list to be done programmatically, ie work for any number.
I've tried the following but it doesn't give the correct result:
a... |
Forum: Python Apr 17th, 2008 |
| Replies: 6 Views: 3,371 Thanks guys, I'll play around and see what I can make of it. Any problems, i'll post back :) |
Forum: Python Apr 16th, 2008 |
| Replies: 6 Views: 3,371 searchSpace[0].ac would be an attribute belonging to that class instance. |
Forum: Python Apr 15th, 2008 |
| Replies: 6 Views: 3,371 Hey guys,
I've got a class defined has the following:
class TData(object) :
#Overriden constructor
def __init__(self, oc, via ):
self.oc = oc
self.via = via |
Forum: Python Apr 8th, 2008 |
| Replies: 1 Views: 2,387 Hey there,
I've got a script in another language and I've set a writer from the script to python. Now I'm trying to send data back the other way... ie python -> to my script. However I've got... |