Re: [Python-Dev] @decoration of classes

2005-03-26 Thread Jp Calderone
On Sat, 26 Mar 2005 22:49:33 +0100, Eric Nieuwland <[EMAIL PROTECTED]> wrote: >On 26 mrt 2005, at 21:36, Josiah Carlson wrote: > > Eric Nieuwland <[EMAIL PROTECTED]> wrote: > >> Given the ideas so far, would it possible to: > >> > >> def meta(cls): > >>... > >> > >> @meta > >> class X(...): > >

Re: [Python-Dev] @decoration of classes

2005-03-26 Thread Eric Nieuwland
On 26 mrt 2005, at 21:36, Josiah Carlson wrote: Eric Nieuwland <[EMAIL PROTECTED]> wrote: Given the ideas so far, would it possible to: def meta(cls): ... @meta class X(...): ... It is not implemented in Python 2.4. From what I understand, making it happen in Python 2.5 would not b

Re: [Python-Dev] @decoration of classes

2005-03-26 Thread Josiah Carlson
Eric Nieuwland <[EMAIL PROTECTED]> wrote: > > Given the ideas so far, would it possible to: > > def meta(cls): > ... > > @meta > class X(...): > ... It is not implemented in Python 2.4. From what I understand, making it happen in Python 2.5 would not be terribly difficult. The qu

Re: [Python-Dev] @decoration of classes

2005-03-26 Thread Eric Nieuwland
Given the ideas so far, would it possible to: def meta(cls): ... @meta class X(...): ... ?? --eric ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/ma

[Python-Dev] FYI: news items about Burton Report on P-languages

2005-03-26 Thread Guido van Rossum
-- Forwarded message -- From: Google Alerts <[EMAIL PROTECTED]> Date: Fri, 25 Mar 2005 15:36:32 -0800 (PST) Subject: Google Alert - python -spamalot -monty To: [EMAIL PROTECTED] Google Alert for: python -spamalot -monty Report: P-Languages Better For Enterprise InternetNews.com

Re: [Python-Dev] tree data structure and python

2005-03-26 Thread Skip Montanaro
vivek> I have to implement tree data structure using python. How it can vivek> be done in python. Wrong list. This is about development *of* Python, not development *with* Python. Try python-list@python.org (or its sister Usenet newsgroup, comp.lang.python) instead. -- Skip Montanaro