|
View:
New views
20 Messages
—
Rating Filter:
Alert me
|
| < Prev | 1 - 2 | Next > |
|
|
self.__dict__ tricksThis is not a request for help but a request for comments:
Consider the following code and note that 1)The initializer uses the dictionary style of arguments 2)The check loop executes before all of the class variables are declared ## -------------------------------------------------------------------- class formLoader(): def __init__(self,**kw): self.fileName = None self.record = None self.string = None ## Uncomment below to see that only fileName, record and string ## are recorded by __dict__ #std.debug("self.__dict__",self.__dict__) for k in kw.keys(): if k in self.__dict__: self.__dict__[k] = kw[k] else: raise AttributeError("%s is not a class member. Use one of ('%s')" % (repr(k),"', '".join(self.__dict__.keys()))) self.tokens = ["form","input","textarea","select","option","form"] self.inputTypes = ["button","checkbox","file","hidden","image","password", "radio","reset","submit","text"] self.inputValTypes = ["file","hidden","password","text"] self.colnames = [] ## case-insensitive column names self.formIndexes = [] ## Index forms in outer list ## ..... ## -------------------------------------------------------------------- Now if I were to code something like the following: fml = formLoader(fileName=doc,tokens="tim") ## Note that `tokens' is passed as a named argument. I get the following error message: AttributeError: 'tokens' is not a class member. Use one of ('record', 'string', 'fileName') I am not complaining! This is a good thing and a cool idiom. Placing the the check loop after _only_ the keywords that I wanted to allow _disallows_ any others. I'd welcome comments - such as any other applications. Always a newbie .... -- Tim tim@... http://www.akwebsoft.com -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricksOn Thu, 29 Oct 2009 21:16:37 -0500, Tim Johnson wrote:
> This is not a request for help but a request for comments: Consider the > following code and note that 1)The initializer uses the dictionary style > of arguments 2)The check loop executes before all of the class variables > are declared Could you explain what problem you are trying to solve? > class formLoader(): Idiomatic Python is to use CamelCase for classes. > def __init__(self,**kw): > self.fileName = None > self.record = None > self.string = None > ## Uncomment below to see that only fileName, record > ## and string are recorded by __dict__ > #std.debug("self.__dict__",self.__dict__) > for k in kw.keys(): In recent versions of Python, this is best written as for k in kw: > if k in self.__dict__: > self.__dict__[k] = kw[k] Is your intention to ensure that the only keyword arguments allowed are fileName, record and string? Perhaps the easiest way to do that is: for k in kw: if k not in ('filename', 'record', 'string'): raise Exception() # whatever... setattr(self, k) = kw[k] > else: > raise AttributeError( In my opinion, AttributeError is not appropriate here. Passing an invalid parameter shouldn't raise the same error as failing an attribute look-up. That's misleading and confusing. > "%s is not a class member. Use one of ('% > s')" % (repr(k),"', '".join > (self.__dict__.keys()))) [Aside: eight space tabs are *WAY* too big for Usenet and email. You should use four spaces, or even two, when posting here.] It is idiomatic Python to use "instance attributes" to refer to attributes attached to instances, and "class attributes" to refer to those attached to classes. Talking about "class members" will confuse Python developers who aren't also familiar with Java or C++. (I know it confuses *me* -- are class members shared by all instances in a class, as the name implies, or are they individual to the instance, as your code implies?) I also should point out that your trick will fail if you are using __slots__. > self.tokens = ["form","input","textarea","select","option","form"] > self.inputTypes = > ["button","checkbox","file","hidden","image","password", > "radio","reset","submit","text"] > self.inputValTypes = ["file","hidden","password","text"] > self.colnames > = [] ## case-insensitive column names > self.formIndexes = [] ## > Index forms in outer list Is any of that relevant to the trick you are asking for comments for? If not, why is it here? > I'd welcome comments - such as any other applications. Personally, I don't like it. The method signature makes it impossible to tell what arguments are excepted, and it forces me to use keywords even if I'd prefer to use positional arguments. I prefer to let the interpreter check the arguments for me: class FormLoader(): def __init__(self, fileName=None, record=None, string=None): self.fileName = fileName self.record = record self.string = string That's all it takes, and you get the benefit of a method signature that makes it obvious what arguments it takes. -- Steven -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricksSteven D'Aprano <steve@...> writes:
> On Thu, 29 Oct 2009 21:16:37 -0500, Tim Johnson wrote: > > class formLoader(): > > Idiomatic Python is to use CamelCase for classes. Or rather: Instead of camelCase names, idiomatic Python is to use TitleCase names. -- \ “We are not gonna be great; we are not gonna be amazing; we are | `\ gonna be *amazingly* amazing!” —Zaphod Beeblebrox, _The | _o__) Hitch-Hiker's Guide To The Galaxy_, Douglas Adams | Ben Finney -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricksBen Finney <ben+python@...> writes:
> Steven D'Aprano <steve@...> writes: > > > On Thu, 29 Oct 2009 21:16:37 -0500, Tim Johnson wrote: > > > class formLoader(): > > > > Idiomatic Python is to use CamelCase for classes. > > Or rather: Instead of camelCase names, idiomatic Python is to use > TitleCase names. Blah, my attempt at clarity just made it more confusing. Instead of camelCase names, idiomatic Python is to use TitleCase names for classes. -- \ “Pinky, are you pondering what I'm pondering?” “I think so, | `\ Brain, but how will we get a pair of Abe Vigoda's pants?” | _o__) —_Pinky and The Brain_ | Ben Finney -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricksOn Fri, 30 Oct 2009 15:55:04 +1100, Ben Finney wrote:
> Steven D'Aprano <steve@...> writes: > >> On Thu, 29 Oct 2009 21:16:37 -0500, Tim Johnson wrote: >> > class formLoader(): >> >> Idiomatic Python is to use CamelCase for classes. > > Or rather: Instead of camelCase names, idiomatic Python is to use > TitleCase names. Thank you for the correction. I always mix up those two. -- Steven -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricksSteven D'Aprano wrote:
> On Fri, 30 Oct 2009 15:55:04 +1100, Ben Finney wrote: > >> Steven D'Aprano <steve@...> writes: >> >>> On Thu, 29 Oct 2009 21:16:37 -0500, Tim Johnson wrote: >>>> class formLoader(): >>> Idiomatic Python is to use CamelCase for classes. >> Or rather: Instead of camelCase names, idiomatic Python is to use >> TitleCase names. > > Thank you for the correction. I always mix up those two. > BactrianCase? :-) -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricksMRAB wrote:
> Steven D'Aprano wrote: >> On Fri, 30 Oct 2009 15:55:04 +1100, Ben Finney wrote: >> >>> Steven D'Aprano <steve@...> writes: >>> >>>> On Thu, 29 Oct 2009 21:16:37 -0500, Tim Johnson wrote: >>>>> class formLoader(): >>>> Idiomatic Python is to use CamelCase for classes. >>> Or rather: Instead of camelCase names, idiomatic Python is to use >>> TitleCase names. >> Thank you for the correction. I always mix up those two. >> > Wouldn't it be clearer if they were called dromedaryCase and > BactrianCase? :-) It's not often I really get a laugh out of this mailing list, but that really made me chuckle. Thanks :) TJG -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricksOn 2009-10-30, Steven D'Aprano <steve@...> wrote:
> > Could you explain what problem you are trying to solve? > > >> class formLoader(): Hi Steve In a nutshell: The 'problem' is to parse a form in such a way that tags which are to be modified are represented as dictionaries. The 'grunt' work is done. This class will probably grow with time. > Idiomatic Python is to use CamelCase for classes. Can you point me to a discussion on Idiomatic Python, CamelCase and other matters? > Is your intention to ensure that the only keyword arguments allowed are > fileName, record and string? Correct. > Perhaps the easiest way to do that is: > > for k in kw: > if k not in ('filename', 'record', 'string'): > raise Exception() # whatever... > setattr(self, k) = kw[k] Understood. A better 'trick' >> else: >> raise AttributeError( > > In my opinion, AttributeError is not appropriate here. Passing an invalid > parameter shouldn't raise the same error as failing an attribute look-up. > That's misleading and confusing. What error class or other approach do you recommend? > [Aside: eight space tabs are *WAY* too big for Usenet and email. You > should use four spaces, or even two, when posting here.] Yikes! I just starting using vim with slrn again. Will take care of that. > It is idiomatic Python to use "instance attributes" to refer to > attributes attached to instances, and "class attributes" to refer to > those attached to classes. Talking about "class members" will confuse > Python developers who aren't also familiar with Java or C++. (I know it > confuses *me* -- are class members shared by all instances in a class, as > the name implies, or are they individual to the instance, as your code > implies?) Thanks for that. C++ corrupted me. > I also should point out that your trick will fail if you are using > __slots__. ??. Will research that. Elaborate if you wish. >> self.tokens = > ["form","input","textarea","select","option","form"] <....> > > Is any of that relevant to the trick you are asking for comments for? If > not, why is it here? It was there to illustrate my edification of the usage of self.__dict__ >> I'd welcome comments - such as any other applications. > > Personally, I don't like it. The method signature makes it impossible to > tell what arguments are excepted, and it forces me to use keywords even > if I'd prefer to use positional arguments. I prefer to let the > interpreter check the arguments for me: Using your tuple example would clarify things. The method signature then becomes the tuple. I.E #<steve sayeth> if k not in ('filename', 'record', 'string'): # handle here If the class grows - and I expect it will - I'd prefer to stick with the keywords approach. That approach also allows me to use a dictionary to initialize the object. Thanks for the input. Very helpful. - and always a newbie - -- Tim tim@... http://www.akwebsoft.com -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricksOn Fri, 30 Oct 2009 11:16:29 -0500, Tim Johnson wrote:
> On 2009-10-30, Steven D'Aprano <steve@...> > wrote: >> >> Could you explain what problem you are trying to solve? >> >> >>> class formLoader(): > > Hi Steve > In a nutshell: > The 'problem' is to parse a form in such a way that tags which are to > be modified are represented as dictionaries. The 'grunt' work is done. > This class will probably grow with time. The standard way of doing this is to list the arguments as parameters, together with their defaults: def __init__(self, filename=None, record=None, string=None): ... Then Python will do the error checking for your, and raise an exception if the caller passes an unexpected argument. Can you explain why this isn't enough for your needs, and you need to do something else? >> Idiomatic Python is to use CamelCase for classes. > Can you point me to a discussion on Idiomatic Python, CamelCase and > other matters? See PEP 8: http://www.python.org/dev/peps/pep-0008/ >> In my opinion, AttributeError is not appropriate here. Passing an >> invalid parameter shouldn't raise the same error as failing an >> attribute look-up. That's misleading and confusing. > > What error class or other approach do you recommend? Unless you have a good reason for doing something different, do what Python built-ins do: >>> int('123', parrot=16) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: 'parrot' is an invalid keyword argument for this function >> I also should point out that your trick will fail if you are using >> __slots__. > ??. Will research that. Elaborate if you wish. __slots__ are an optimization for making objects smaller than normal if you have many millions of them: http://docs.python.org/reference/datamodel.html#slots > If the class grows - and I expect it will - I'd prefer to stick with > the keywords approach. That approach also allows me to use a > dictionary to initialize the object. You can still do that with named parameters. >>> class Parrot: ... def __init__(self, name='Polly', colour='blue', ... breed='Norwegian'): ... self.name = name ... self.colour = colour ... self.breed = breed ... def speak(self): ... print "%s the %s %s says 'Give us a kiss!'" % ( ... self.name, self.colour, self.breed) ... >>> p = Parrot("Sparky", 'white', "Cockatoo") >>> p.speak() Sparky the white Cockatoo says 'Give us a kiss!' >>> >>> data = dict(colour='red', name='Fred', foo=1) >>> p = Parrot(**data) # raise an error with bad input Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: __init__() got an unexpected keyword argument 'foo' >>> >>> del data['foo'] # fix the bad input >>> p = Parrot(**data) >>> p.speak() Fred the red Norwegian says 'Give us a kiss!' -- Steven -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricksOn Friday, 30 October 2009 17:28:47 MRAB wrote:
> Wouldn't it be clearer if they were called dromedaryCase and > BactrianCase? :-) Ogden Nash: The Camel has a single hump- The Dromedary, two; Or the other way around- I'm never sure. - Are You? - Hendrik -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricksOn 2009-10-31, Steven D'Aprano <steve@...> wrote:
>>> Idiomatic Python is to use CamelCase for classes. >> Can you point me to a discussion on Idiomatic Python, CamelCase and >> other matters? > <...> See PEP 8: > > http://www.python.org/dev/peps/pep-0008/ Got it. Thanks. > >>> invalid parameter shouldn't raise the same error as failing an >>> attribute look-up. That's misleading and confusing. >> >> What error class or other approach do you recommend? > > Unless you have a good reason for doing something different, do what > Python built-ins do: > >>>> int('123', parrot=16) > Traceback (most recent call last): > File "<stdin>", line 1, in <module> > TypeError: 'parrot' is an invalid keyword argument for this function and have been using it ever since. > >>> I also should point out that your trick will fail if you are using >>> __slots__. >> ??. Will research that. Elaborate if you wish. > > __slots__ are an optimization for making objects smaller than normal if > you have many millions of them: > > http://docs.python.org/reference/datamodel.html#slots Thanks. <....> > >> If the class grows - and I expect it will - I'd prefer to stick with >> the keywords approach. That approach also allows me to use a >> dictionary to initialize the object. > > You can still do that with named parameters. > <...> >>>> class Parrot: > ... def __init__(self, name='Polly', colour='blue', >>>> p = Parrot("Sparky", 'white', "Cockatoo") >>>> data = dict(colour='red', name='Fred', foo=1) >>>> p = Parrot(**data) # raise an error with bad input > Traceback (most recent call last): > File "<stdin>", line 1, in <module> > TypeError: __init__() got an unexpected keyword argument 'foo' <...> OK. That makes sense. You have made a believer of me. I really appreciate all the time you have taken with this. Many programmers I know stay away from 'lists' such as this, because they are afraid to show their ignorance. Me, I'm fearless, and I have learned a lot that I might not have otherwise. take care -- Tim tim@... http://www.akwebsoft.com -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricksHendrik van Rooyen wrote:
> On Friday, 30 October 2009 17:28:47 MRAB wrote: > >> Wouldn't it be clearer if they were called dromedaryCase and >> BactrianCase? :-) > > Ogden Nash: > > The Camel has a single hump- > The Dromedary, two; > Or the other way around- > I'm never sure. - Are You? > Dromedary starts with "D", 1 bump, 1 hump. Bactrian starts with "B", 2 bumps, 2 humps. -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricksOn Sat, 31 Oct 2009 11:15:48 -0500, Tim Johnson wrote:
> Many programmers I know stay away from 'lists' such as this, because > they are afraid to show their ignorance. Me, I'm fearless, and I have > learned a lot that I might not have otherwise. The only stupid question is the one you are afraid to ask. Good luck! -- Steven -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricksIn article <02fd0c85$0$1326$c3e8da3@...>,
Steven D'Aprano <steve@...> wrote: >On Sat, 31 Oct 2009 11:15:48 -0500, Tim Johnson wrote: >> >> Many programmers I know stay away from 'lists' such as this, because >> they are afraid to show their ignorance. Me, I'm fearless, and I have >> learned a lot that I might not have otherwise. > >The only stupid question is the one you are afraid to ask. "There are no stupid questions, only stupid people." -- Aahz (aahz@...) <*> http://www.pythoncraft.com/ [on old computer technologies and programmers] "Fancy tail fins on a brand new '59 Cadillac didn't mean throwing out a whole generation of mechanics who started with model As." --Andrew Dalke -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricksaahz@... (Aahz) writes:
> "There are no stupid questions, only stupid people." The earliest source I know for that aphorism is the fictional teacher Mister Garrisson, from South Park. Can anyone source it earlier? -- \ “Read not to contradict and confute, nor to believe and take | `\ for granted … but to weigh and consider.” —Francis Bacon | _o__) | Ben Finney -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricks2009/11/1 Steven D'Aprano <steve@...>:
> > The only stupid question is the one you are afraid to ask. I was once asked, and I quote exactly, "are there any fish in the Atlantic sea?" That's pretty stupid. ;-) -- Cheers, Simon B. -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricksSimon Brunning wrote:
> 2009/11/1 Steven D'Aprano <steve@...>: > >>The only stupid question is the one you are afraid to ask. > > > I was once asked, and I quote exactly, "are there any fish in the Atlantic sea?" > > That's pretty stupid. ;-) > Are there any fish in the Dead Sea? ~Ethan~ -- http://mail.python.org/mailman/listinfo/python-list |
|
|
Re: self.__dict__ tricksOn Tue, 03 Nov 2009 09:59:32 -0800, Ethan Furman <ethan@...>
wrote: > Simon Brunning wrote: >> 2009/11/1 Steven D'Aprano <steve@...>: >> >>> The only stupid question is the one you are afraid to ask. >> I was once asked, and I quote exactly, "are there any fish in the >> Atlantic sea?" >> That's pretty stupid. ;-) >> > > Are there any fish in the Dead Sea? > Depends on how you define fish, surely ;-)? -- Rami Chowdhury "Never attribute to malice that which can be attributed to stupidity" -- Hanlon's Razor 408-597-7068 (US) / 07875-841-046 (UK) / 0189-245544 (BD) -- http://mail.python.org/mailman/listinfo/python-list |
|
|
|
|
|
|
| < Prev | 1 - 2 | Next > |
| Free embeddable forum powered by Nabble | Forum Help |