Re: Object Integer mapping

2010-01-20 Thread NighterNet
On Jan 20, 9:43 am, Robert Kern wrote: > On 2010-01-20 11:18 AM, Richard Thomas wrote: > > > > > On Jan 20, 4:43 pm, NighterNet  wrote: > >> Need help on python version 3.1.x. I can't seem to know what going on > >> a bit. The code that I check that the ha

Object Integer mapping

2010-01-20 Thread NighterNet
Need help on python version 3.1.x. I can't seem to know what going on a bit. The code that I check that the hash is different every time. Is there a way to make the hash the same? I using as to check the class is the same variables but if it different variable in the class that it add to the array

transparent splash screen

2009-10-08 Thread NighterNet
I been looking for simple way to create a transparent splash screen. Using gif,png,jpg just by loading the file into it. Using version 3.1.1 Any help would be nice. -- http://mail.python.org/mailman/listinfo/python-list

sqlite3 gui

2009-08-05 Thread NighterNet
This took a while to get a gui working. I am new at this coding. This work with sqlite3 Python Version: 3.1.0. The older version doesn't work. #!/usr/local/bin/python ''' This is for basic database access to view the information. Python version: 3.1.0 Features: -view database. -run script -u

Re: socket policy flash help

2009-08-03 Thread NighterNet
On Aug 2, 12:25 pm, Piet van Oostrum wrote: > >>>>> NighterNet (N) wrote: > >N> Here the full code. > >N> flashpolicy.xml > >N> [[[ > >N> > >N> > >N>     > >N> > >N> ]]] > >N> flashpolicyt

Re: socket policy flash help

2009-08-01 Thread NighterNet
Here the full code. flashpolicy.xml [[[ ]]] flashpolicytest_server3x.py [[[ #!/usr/local/bin/python ''' Still under testing... python version 3.x.x ''' import socket import threading import sys import os file_name = 'flashpolicy.xml' fh = open(file_name, "r") policy = fh.read(10001) hos

Re: socket policy flash help

2009-08-01 Thread NighterNet
On Aug 1, 4:52 am, Piet van Oostrum wrote: > >>>>> NighterNet (N) wrote: > >N> I need help on the policy to able to let access to user to the server > >N> once the policy access is finish. I been trying to find a good > >N> example, but I got no l

socket policy flash help

2009-07-31 Thread NighterNet
I need help on the policy to able to let access to user to the server once the policy access is finish. I been trying to find a good example, but I got no luck. Using python version 3.1. Here the code I tested but it not working. if str(buff) == str("b\'\\x00\'"):

Re: threads check socket

2009-07-31 Thread NighterNet
On Jul 31, 10:23 am, "Gabriel Genellina" wrote: > En Fri, 31 Jul 2009 13:35:10 -0300, NighterNet   > escribió: > > > I been trying to find a way to check the socket is open or not. The > > thread are in a group and loop if the sockets are open. If they are >

threads check socket

2009-07-31 Thread NighterNet
I been trying to find a way to check the socket is open or not. The thread are in a group and loop if the sockets are open. If they are not open delete the thread and remove the group. I need on this. -- http://mail.python.org/mailman/listinfo/python-list

Re: class or thread id count

2009-07-30 Thread NighterNet
On Jul 30, 12:14 pm, r wrote: > On Jul 30, 1:13 pm, NighterNet wrote: > > > Need some help on doing some bit simple id count. It like every time > > it create a class orthreadthere is id++. Python 3.1 > > > example: > > class ClientThread (threading.Thread): >

class or thread id count

2009-07-30 Thread NighterNet
Need some help on doing some bit simple id count. It like every time it create a class or thread there is id++. Python 3.1 example: class ClientThread (threading.Thread): def __init__(self,clientSocket): threading.Thread.__init__(self) self.id += 1; Not sure it how it works. --

Re: socket send

2009-07-30 Thread NighterNet
On Jul 30, 6:56 am, "Mark Tolonen" wrote: > "NighterNet" wrote in message > > news:55aba832-df6d-455f-bf34-04d37eb06...@i4g2000prm.googlegroups.com... > > >I am trying to figure out how to send text or byte in python3.1. I am > > trying to send data t

socket send

2009-07-29 Thread NighterNet
I am trying to figure out how to send text or byte in python 3.1. I am trying to send data to flash socket to get there. I am not sure how to work it. buff= 'id=' , self.id , ':balive=False\n' clientSock.send(buff); -- http://mail.python.org/mailman/listinfo/python-list

Re: simple splash screen?

2009-07-29 Thread NighterNet
On Jul 29, 11:16 am, "Martin P. Hellwig" wrote: > NighterNet wrote: > > I am trying to make a simple splash screen from python 3.1.Not sure > > where to start looking for it. Can any one help? > > Sure, almost the same as with Python 2 :-) > But to be a bit mor

Re: simple splash screen?

2009-07-29 Thread NighterNet
On Jul 29, 5:24 am, Marcus Wanner wrote: > On 7/28/2009 11:58 PM, NighterNet wrote:> I am trying to make a simple splash > screen from python 3.1.Not sure > > where to start looking for it. Can any one help? > > Trying to make a splash screen for python? > Or trying t

simple splash screen?

2009-07-28 Thread NighterNet
I am trying to make a simple splash screen from python 3.1.Not sure where to start looking for it. Can any one help? -- http://mail.python.org/mailman/listinfo/python-list