Re: Creating a shared object in python

2007-07-31 Thread Bjoern Schliessmann
Delgado, Edgardo CIV NAVAIR 4.1.4.3 wrote: > Is there a way to create a shared object in python? What's a shared object? Do you mean IPC or .so libraries, or something different? Regards, Björn -- BOFH excuse #404: Sysadmin accidentally destroyed pager with a large hammer. -- http://mail

Re: Creating a shared object in python

2007-07-31 Thread Fabio Z Tessitore
Il Tue, 31 Jul 2007 15:37:26 -0400, Delgado, Edgardo CIV NAVAIR 4.1.4.3 ha scritto: > Is there a way to create a shared object in python? > > Thx, > > Edgar Usually object are shared in Python. i.e. # a list l = [ 1 , 2 , 3 ] # a list containing l m = [ l, 4, 5 ] # now m is [ [1,2,3]

Re: Creating a shared object in python

2007-07-31 Thread kyosohma
On Jul 31, 2:37 pm, "Delgado, Edgardo CIV NAVAIR 4.1.4.3" <[EMAIL PROTECTED]> wrote: > Is there a way to create a shared object in python? > > Thx, > > Edgar You can save variables in a separate module. Something like this structure works quite well: # shared.py # shared variables / object some