User kevin holzer - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T23:29:01Z http://stackoverflow.com/feeds/user/19139 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/224026/javascript-style-dot-notation-for-dictionary-keys-unpythonic/224080#224080 7 Answer by kevin holzer for Javascript style dot notation for dictionary keys unpythonic? kevin holzer 2008-10-22T00:40:31Z 2008-10-24T23:46:17Z <p>With regards to the <code>DictObj</code>, would the following work for you? A blank class will allow you to arbitrarily add to or replace stuff in a container object.</p> <pre><code>class Container(object): pass &gt;&gt;&gt; myContainer = Container() &gt;&gt;&gt; myContainer.spam = "in a can" &gt;&gt;&gt; myContainer.eggs = "in a shell" </code></pre> <p>If you want to not throw an AttributeError when there is no attribute, what do you think about the following? Personally, I'd prefer to use a dict for clarity, or to use a try/except clause.</p> <pre><code>class QuietContainer(object): def __getattr__(self, attribute): try: return object.__getattr__(self,attribute) except AttributeError: return None &gt;&gt;&gt; cont = QuietContainer() &gt;&gt;&gt; print cont.me None </code></pre> <p>Right?</p> http://stackoverflow.com/questions/218616/getting-method-parameter-names-in-python/220366#220366 4 Answer by kevin holzer for Getting method parameter names in python kevin holzer 2008-10-21T00:02:19Z 2008-10-21T00:08:23Z <p>Here is something I think will work for what you want, using a decorator.</p> <pre><code>class LogWrappedFunction(object): def __init__(self, function): self.function = function def logAndCall(self, *arguments, **namedArguments): print "Calling %s with arguments %s and named arguments %s" %\ (self.function.func_name, arguments, namedArguments) self.function.__call__(*arguments, **namedArguments) def logwrap(function): return LogWrappedFunction(function).logAndCall @logwrap def doSomething(spam, eggs, foo, bar): print "Doing something totally awesome with %s and %s." % (spam, eggs) doSomething("beans","rice", foo="wiggity", bar="wack") </code></pre> <p>Run it, it will yield the following output:</p> <pre><code>C:\scripts&gt;python decoratorExample.py Calling doSomething with arguments ('beans', 'rice') and named arguments {'foo': 'wiggity', 'bar': 'wack'} Doing something totally awesome with beans and rice. </code></pre> http://stackoverflow.com/questions/224026/javascript-style-dot-notation-for-dictionary-keys-unpythonic/224080#224080 Comment by kevin holzer on Javascript style dot notation for dictionary keys unpythonic? kevin holzer 2008-10-24T23:39:14Z 2008-10-24T23:39:14Z What about defining a special <b>getattr</b> method? It could just catch the exception and return none. Lemme fix my code to include that.