Re: vocab question

2007-04-14 Thread Colin J. Williams
James Stroud wrote: > Alan G Isaac wrote: >> Pardon the vocab question; >> I'm not a computer science type. >> According to the Reference Manual, >> a class defintion has the structure:: >> >> classdef ::= "class" classname [inheritance] ":" suite >> >> What is the entire part before the

Re: vocab question

2007-04-13 Thread Terry Reedy
"Alan G Isaac" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] | Pardon the vocab question; | I'm not a computer science type. | According to the Reference Manual, | a class defintion has the structure:: | | classdef ::= "class" classname [inheritance] ":" suite | | What is

Re: vocab question

2007-04-13 Thread Steven Bethard
James Stroud wrote: > Alan G Isaac wrote: >> According to the Reference Manual, >> a class defintion has the structure:: >> >> classdef ::= "class" classname [inheritance] ":" suite >> >> What is the entire part before the suite called? >> (Just pointing to a reference is fine & helpful,

Re: vocab question

2007-04-13 Thread Bruno Desthuilliers
Steven Bethard a écrit : > Bruno Desthuilliers wrote: > >> Alan G Isaac a écrit : >> >>> Pardon the vocab question; >>> I'm not a computer science type. >>> According to the Reference Manual, >>> a class defintion has the structure:: >>> >>> classdef ::= "class" classname [inheritance] "

Re: vocab question

2007-04-13 Thread James Stroud
Alan G Isaac wrote: > Pardon the vocab question; > I'm not a computer science type. > According to the Reference Manual, > a class defintion has the structure:: > > classdef ::= "class" classname [inheritance] ":" suite > > What is the entire part before the suite called? > (Just pointi

Re: vocab question

2007-04-13 Thread Alan G Isaac
Steven Bethard wrote: > As far as I > know, there's no official term for the first four elements of a class > statement. I'd probably call it the class statement header. That will have to do for now. Thanks! Alan Isaac -- http://mail.python.org/mailman/listinfo/python-list

Re: vocab question

2007-04-13 Thread Steven Bethard
Bruno Desthuilliers wrote: > Alan G Isaac a écrit : >> Pardon the vocab question; >> I'm not a computer science type. >> According to the Reference Manual, >> a class defintion has the structure:: >> >> classdef ::= "class" classname [inheritance] ":" suite >> >> What is the entire part b

Re: vocab question

2007-04-13 Thread Bruno Desthuilliers
Alan G Isaac a écrit : > Pardon the vocab question; > I'm not a computer science type. > According to the Reference Manual, > a class defintion has the structure:: > > classdef ::= "class" classname [inheritance] ":" suite > > What is the entire part before the suite called? A statemen

Re: vocab question

2007-04-13 Thread kyosohma
On Apr 13, 2:06 pm, Alan G Isaac <[EMAIL PROTECTED]> wrote: > Pardon the vocab question; > I'm not a computer science type. > According to the Reference Manual, > a class defintion has the structure:: > > classdef ::= "class" classname [inheritance] ":" suite > > What is the entire part