Re: Object System

2009-03-19 Thread Terry Reedy
John Mendelewski wrote: I was wondering if anyone had documents or articles what gave an in- depth view of the object system in Python. http://effbot.org/zone/python-objects.htm -- http://mail.python.org/mailman/listinfo/python-list

Re: Object System

2009-03-19 Thread Michele Simionato
On Mar 19, 10:18 pm, John Mendelewski wrote: > I was wondering if anyone had documents or articles what gave an in- > depth view of the object system in Python. Ones concerning dispatch, > how self really works, and maybe some meta-programming that comes > along with the new style c

Re: Object System

2009-03-19 Thread Benjamin Peterson
John Mendelewski gmail.com> writes: > > What goes on behind the scenes to make a.do() evaluate the do > method with a bound to self in that method? Is this implemented > in C, Python? I think I have a grasp of how to use objects, but > I was wondering about the implementation I suppose. This is

Re: Object System

2009-03-19 Thread John Mendelewski
On Mar 19, 6:19 pm, Benjamin Peterson wrote: > John Mendelewski gmail.com> writes: > > > > > I was wondering if anyone had documents or articles what gave an in- > > depth view of the object system in Python. Ones concerning dispatch, > > how self really works

Re: Object System

2009-03-19 Thread Benjamin Peterson
John Mendelewski gmail.com> writes: > > I was wondering if anyone had documents or articles what gave an in- > depth view of the object system in Python. Ones concerning dispatch, > how self really works, and maybe some meta-programming that comes > along with the new style

Object System

2009-03-19 Thread John Mendelewski
I was wondering if anyone had documents or articles what gave an in- depth view of the object system in Python. Ones concerning dispatch, how self really works, and maybe some meta-programming that comes along with the new style classes. -- http://mail.python.org/mailman/listinfo/python-list