[pyar] Consulta sobre Pattern Registry

Ale peralta.alejandro en gmail.com
Mie Oct 20 16:42:24 ART 2010


El 20 de octubre de 2010 16:39, Leonardo Vidarte <lvidarte en gmail.com>escribió:

> 2010/10/20 Juanjo Conti <jjconti en gmail.com>:
> > En mi vida vi algo tan parecido a un dict :)
>
> Si claro, es un dict, pero la idea es que
> sea persistente entre distintas llamadas en distintos archivos.
> Un dict global.
>
> Capaz esto te sirva...

http://rosettacode.org/wiki/Singleton#Python

>>> class Borg(object):
	__state = {}

	def __init__(self):
		self.__dict__ = self.__state

	# Any other class names/methods


>>> b1 = Borg()
>>> b2 = Borg()
>>> b1 is b2
False
>>> b1.datum = range(5)
>>> b1.datum
[0, 1, 2, 3, 4]
>>> b2.datum
[0, 1, 2, 3, 4]
>>> b1.datum is b2.datum
True
>>> # For any datum!

 --
> // Leo
> _______________________________________________
> pyar mailing list pyar en python.org.ar
> http://listas.python.org.ar/listinfo/pyar
>
> PyAr - Python Argentina - Sitio web: http://www.python.org.ar/
>



-- 
Ale.
------------ próxima parte ------------
Se ha borrado un adjunto en formato HTML...
URL: <http://listas.python.org.ar/pipermail/pyar/attachments/20101020/e41f58a2/attachment.html>


More information about the pyar mailing list