Re: [Python-Dev] Old Style Classes Goiung in Py3K

2006-02-08 Thread Brett Cannon
On 2/8/06, Georg Brandl <[EMAIL PROTECTED]> wrote: > Fuzzyman wrote: > > Hello all, > > > > I understand that old style classes are slated to disappear in Python 3000. > > > > Does this mean that the following will be a syntax error : > > > > class Something: > > pass > > > > *or* that instead

Re: [Python-Dev] Old Style Classes Goiung in Py3K

2006-02-08 Thread Guido van Rossum
On 2/8/06, Fuzzyman <[EMAIL PROTECTED]> wrote: > I understand that old style classes are slated to disappear in Python 3000. > > Does this mean that the following will be a syntax error : > > class Something: > pass > > *or* that instead it will automatically inherit from object ? The latter o

Re: [Python-Dev] Old Style Classes Goiung in Py3K

2006-02-08 Thread Georg Brandl
Fuzzyman wrote: > Hello all, > > I understand that old style classes are slated to disappear in Python 3000. > > Does this mean that the following will be a syntax error : > > class Something: > pass > > *or* that instead it will automatically inherit from object ? Of course, I would say.