User Chris B. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T09:00:00Z http://stackoverflow.com/feeds/user/9161 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1602934/what-is-a-good-way-to-test-if-a-key-exists-in-python-dictionary/1602964#1602964 7 Answer by Chris B. for What is a good way to test if a Key exists in Python Dictionary Chris B. 2009-10-21T19:10:21Z 2009-10-21T19:10:21Z <p><code>in</code> is the intended way to test for the existence of a key in a <code>dict</code>.</p> <pre><code>d = dict() for i in xrange(100): key = i % 10 if key in d: d[key] += 1 else: d[key] = 1 </code></pre> <p>If you wanted a default, you can always use <code>dict.get()</code>:</p> <pre><code>d = dict() for i in xrange(100): key = i % 10 d[key] = d.get(key, 0) + 1 </code></pre> <p>... and if you wanted to always ensure a default value for any key you can use <code>defaultdict</code> from the <code>collections</code> module, like so:</p> <pre><code>from collections import defaultdict d = defaultdict(lambda: 0) for i in xrange(100): d[i % 10] += 1 </code></pre> <p>... but in general, the <code>in</code> keyword is the best way to do it.</p> http://stackoverflow.com/questions/1224432/how-do-i-respond-to-an-internal-drag-and-drop-operation-using-a-qlistwidget 1 How do I respond to an internal drag-and-drop operation using a QListWidget? Chris B. 2009-08-03T20:26:20Z 2009-10-06T21:31:22Z <p>I've got a Qt4 application (using the PyQt bindings) which contains a <code>QListWidget</code>, initialized like so:</p> <pre><code>class MyList(QtGui.QListWidget): def __init__(self): QtGui.QListWidget.__init__(self) self.setDragDropMode(self.InternalMove) </code></pre> <p>I can add items, and this allows me to drag and drop to reorder the list. But how do I get notification when the list gets reordered by the user? I tried adding a <code>dropMimeData(self, index, data, action)</code> method to the class, but it never gets called.</p> http://stackoverflow.com/questions/1458205/with-python-multiprocessing-how-do-i-create-a-proxy-in-the-current-process-to-pa 1 With python.multiprocessing, how do I create a proxy in the current process to pass to other processes? Chris B. 2009-09-22T05:13:08Z 2009-09-28T10:12:23Z <p>I'm using the <code>multiprocessing</code> library in Python. I can see how to define that objects <em>returned</em> from functions should have proxies created, but I'd like to have objects in the current process turned into proxies so I can pass them as parameters.</p> <p>For example, running the following script:</p> <pre><code>from multiprocessing import current_process from multiprocessing.managers import BaseManager class ProxyTest(object): def call_a(self): print 'A called in %s' % current_process() def call_b(self, proxy_test): print 'B called in %s' % current_process() proxy_test.call_a() class MyManager(BaseManager): pass MyManager.register('proxy_test', ProxyTest) if __name__ == '__main__': manager = MyManager() manager.start() pt1 = ProxyTest() pt2 = manager.proxy_test() pt1.call_a() pt2.call_a() pt1.call_b(pt2) pt2.call_b(pt1) </code></pre> <p>... I get the following output ...</p> <pre><code>A called in &lt;_MainProcess(MainProcess, started)&gt; A called in &lt;Process(MyManager-1, started)&gt; B called in &lt;_MainProcess(MainProcess, started)&gt; A called in &lt;Process(MyManager-1, started)&gt; B called in &lt;Process(MyManager-1, started)&gt; A called in &lt;Process(MyManager-1, started)&gt; </code></pre> <p>... but I want that final line of output coming from <code>_MainProcess</code>. </p> <p>I could just create another Process and run it from there, but I'm trying to keep the amount of data that needs to be passed between processes to a minimum. The documentation for the <code>Manager</code> object mentioned a <code>serve_forever</code> method, but it doesn't seem to be supported. Any ideas? Does anyone know?</p> http://stackoverflow.com/questions/1463710/how-do-i-get-this-program-to-start-over-in-python/1463737#1463737 1 Answer by Chris B. for How do I get this program to start over in python? Chris B. 2009-09-23T02:57:42Z 2009-09-23T02:57:42Z <p>A loop? See the <code>for</code> statement and the <code>range()</code> function. They're in the <a href="http://docs.python.org/tutorial/controlflow.html" rel="nofollow">Python tutorial</a>.</p> <p>And you might want to read the next chapter in whatever book you're using to teach yourself programming.</p> http://stackoverflow.com/questions/1458203/reading-a-float-from-string/1458217#1458217 8 Answer by Chris B. for Reading a float from string Chris B. 2009-09-22T05:17:00Z 2009-09-22T05:27:06Z <p><strong>Direct answer</strong>: You can't. Floats are imprecise, by design. While python's floats have more than enough precision to represent 1.0000, they will <em>never</em> represent a "1-point-zero-zero-zero-zero". Chances are, this is as good as you need. You can always use string formatting, if you need to display four decimal digits.</p> <pre><code>print '%.3f' % float(1.0000) </code></pre> <p><strong>Indirect answer</strong>: Use the <code>decimal</code> module.</p> <pre><code>from decimal import Decimal d = Decimal('1.0000') </code></pre> <p>The <code>decimal</code> package is designed to handle all these issues with arbitrary precision. A decimal "1.0000" is <em>exactly</em> 1.0000, no more, no less. Note, however, that complications with rounding means you can't convert from a <code>float</code> directly to a <code>Decimal</code>; you have to pass a string (or an integer) to the constructor. </p> http://stackoverflow.com/questions/1408253/nice-python-decorators/1408431#1408431 3 Answer by Chris B. for Nice Python Decorators Chris B. 2009-09-11T00:28:27Z 2009-09-11T00:28:27Z <p>Writing a good decorator is no different then writing a good function. Which means, ideally, using docstrings and making sure the decorator is included in your testing framework.</p> <p>You should definitely use either the <code>decorator</code> library or, better, the <code>functools.wraps()</code> decorator in the standard library (since 2.5).</p> <p>Beyond that, it's best to keep your decorators narrowly focused and well designed. Don't use <code>*args</code> or <code>**kw</code> if your decorator expects specific arguments. And <em>do</em> fill in what arguments you expect, so instead of:</p> <pre><code>def keep_none(func): def _exec(*args, **kw): return None if args[0] is None else func(*args, **kw) return _exec </code></pre> <p>... use ...</p> <pre><code>def keep_none(func): """Wraps a function which expects a value as the first argument, and ensures the function won't get called with *None*. If it is, this will return *None*. &gt;&gt;&gt; def f(x): ... return x + 5 &gt;&gt;&gt; f(1) 6 &gt;&gt;&gt; f(None) is None Traceback (most recent call last): ... TypeError: unsupported operand type(s) for +: 'NoneType' and 'int' &gt;&gt;&gt; f = keep_none(f) &gt;&gt;&gt; f(1) 6 &gt;&gt;&gt; f(None) is None True""" @wraps(func) def _exec(value, *args, **kw): return None if value is None else func(value, *args, **kw) return _exec </code></pre> http://stackoverflow.com/questions/1247763/how-can-i-create-a-custom-qlayout-and-ensure-its-updated-in-pyqt 0 How can I create a custom QLayout (and ensure it's updated) in PyQt? Chris B. 2009-08-08T02:05:23Z 2009-09-09T12:32:02Z <p>I'm trying to implement a custom QLayout using PyQt. <code>setGeometry</code> gets called, and I loop through and call <code>setGeometry</code> on all the widgets I'm managing, but for some reason the widgets never get painted, despite all having the correct geometry.</p> <p>Also, <code>invalidate</code>, <code>update</code>, and <code>activate</code> never seem to get called on my Layout. Does anyone have any idea how I should be doing this?</p> http://stackoverflow.com/questions/530127/what-is-pythons-built-in-method-acquire-how-can-i-speed-it-up 4 What is Python's "built-in method acquire"? How can I speed it up? Chris B. 2009-02-09T21:41:59Z 2009-08-12T17:16:54Z <p>I'm writing a Python program with a lot of file access. It's running surprisingly slowly, so I used cProfile to find out what was taking the time.</p> <p>It seems there's a <em>lot</em> of time spent in what Python is reporting as "{built-in method acquire}". I have no idea what this method is. What is it, and how can I speed up my program?</p> http://stackoverflow.com/questions/559809/does-anyone-have-a-simple-example-of-a-working-dojox-grid-control 0 Does anyone have a simple example of a working DojoX Grid control? Chris B. 2009-02-18T04:13:20Z 2009-07-29T08:08:40Z <p>I'm trying to add a DojoX Grid control to my website, but I can't get it to work. I'd like a simple example to start from, but there doesn't seem to <em>be</em> one anywhere. These are my requirements:</p> <ol> <li>I need an example of the 1.2 Grid</li> <li>It should load the Dojo libraries from <code>googleapis.com</code> (or AOL's servers; not the trunk code or the Dojo code hosted one some private server)</li> <li>Other than loading the Dojo code from a public server, all the rest of the code should be contained in the HTML page. No loading data from another URL; I'm trying to get the Grid working; <em>then</em> I'll worry about dynamically loading data.</li> </ol> <p>Amazingly, I can't find anything that meets all three requirements. Does anything know of one?</p> http://stackoverflow.com/questions/118221/whats-the-best-dispatcher-callback-library-in-python 0 What's the best dispatcher/callback library in Python? Chris B. 2008-09-22T23:28:37Z 2009-07-16T21:01:38Z <p>I need to allow other Python applications to register callback functions for events in my application. These need to have priorities associated with them (so a callback with a priority of 10 runs before a callback with a priority of 1) and callback functions need to be able to signal errors to the dispatcher.</p> <p>These are all lightweight callbacks running in the same process, so I don't need to send signals across process boundaries.</p> <p>Is there a good Python library to handle this, or do I need to write my own?</p> http://stackoverflow.com/questions/956585/python-attributes-on-a-generator-object/956847#956847 0 Answer by Chris B. for python: attributes on a generator object Chris B. 2009-06-05T16:28:48Z 2009-06-05T16:28:48Z <p>Thinking about the problem, there <em>is</em> a way of having generators carry around a set of attributes. It's a little crazy--I'd strongly recommend Alex Martelli's suggestion instead of this--but it might be useful in some situations.</p> <pre><code>my_content = ['cat', 'dog days', 'catfish', 'dog', 'catalog'] def filter(x): _query = 'I\'m looking for %r' % x def _filter(): query = yield None for line in my_content: while query: query = yield _query if line.startswith(x): query = yield line while query: query = yield _query _f = _filter() _f.next() return _f for d in filter('dog'): print 'Found %s' % d cats = filter('cat') for c in cats: looking = cats.send(True) print 'Found %s (filter %r)' % (c, looking) </code></pre> <p>If you want to ask the generator what it's filtering on, just call <code>send</code> with a value that evaluates to true. Of course, this code is probably too clever by half. Use with caution.</p> http://stackoverflow.com/questions/956585/python-attributes-on-a-generator-object/956667#956667 1 Answer by Chris B. for python: attributes on a generator object Chris B. 2009-06-05T15:55:20Z 2009-06-05T15:55:20Z <p>No. You can't set arbitrary attributes on generators.</p> <p>As S. Lott points out, you can have a object that <em>looks</em> like a generator, and <em>acts</em> like a generator. And if it looks like a duck, and acts like a duck, you've got yourself the very definition of duck typing, right there.</p> <p>It won't support generator attributes like <code>gi_frame</code> without the appropriate proxy methods, however.</p> http://stackoverflow.com/questions/953027/explicit-access-to-pythons-built-in-scope/953063#953063 6 Answer by Chris B. for Explicit access to Python's built in scope Chris B. 2009-06-04T21:00:00Z 2009-06-04T21:06:24Z <p>Use <code>__builtin__</code>.</p> <pre><code>def open(): pass import __builtin__ print open print __builtin__.open </code></pre> <p>... gives you ...</p> <blockquote> <p><code>&lt;function open at 0x011E8670&gt;</code><br /> <code>&lt;built-in function open&gt;</code> </p> </blockquote> http://stackoverflow.com/questions/950053/referencing-a-class-method-not-an-instances/952533#952533 0 Answer by Chris B. for Referencing a class' method, not an instance's... Chris B. 2009-06-04T19:13:58Z 2009-06-04T19:13:58Z <p>If I understand the design goals of the library function, you want to provide a library "power" function which will raise any object passed to it to the Nth power. But you also want to provide a "shortcut" for efficiency.</p> <p>The design goals seem a little odd--Python already defines the <strong>mul</strong> method to allow the designer of a class to multiply it by an arbitrary value, and the <strong>pow</strong> method to allow the designer of a class to support raising it to a power. If I were building this, I'd expect and require the users to have a <strong>mul</strong> method, and I'd do something like this:</p> <pre><code>def bin_or_pow(a, x): pow_func = getattr(a, '__pow__', None) if pow_func is None: def pow_func(n): v = 1 for i in xrange(n): v = a * v return v return pow_func(x) </code></pre> <p>That will let you do the following:</p> <pre><code>class Multable(object): def __init__(self, x): self.x = x def __mul__(self, n): print 'in mul' n = getattr(n, 'x', n) return type(self)(self.x * n) class Powable(Multable): def __pow__(self, n): print 'in pow' n = getattr(n, 'x', n) return type(self)(self.x ** n) print bin_or_pow(5, 3) print print bin_or_pow(Multable(5), 5).x print print bin_or_pow(Powable(5), 5).x </code></pre> <p>... and you get ...</p> <blockquote> <p>125 </p> <p>in mul<br /> in mul<br /> in mul<br /> in mul<br /> in mul<br /> 3125 </p> <p>in pow<br /> 3125 </p> </blockquote> http://stackoverflow.com/questions/946047/oo-design-returning-a-child-class-from-a-parent/946100#946100 2 Answer by Chris B. for OO Design: Returning a child class from a parent Chris B. 2009-06-03T17:40:50Z 2009-06-03T17:40:50Z <p>What you want is a "Factory Pattern". Rather than create new <code>Animal</code>s directly, call a function which chooses the type of animal to create. In Java I'd probably make that a static method of the class, and in Python I'd store all the Animal classes in a dictionary linked to the key, so I could look up the key and then pass the arguments along to the constructor.</p> <p>For PHP, I found an article on <a href="http://www.devshed.com/c/a/PHP/The-Basics-of-Using-the-Factory-Pattern-in-PHP-5/" rel="nofollow">Using the Factory Pattern in PHP</a>.</p> http://stackoverflow.com/questions/942322/python-cant-loop-regex-replacemt-and-strings-in-embedded-for-loop/942387#942387 1 Answer by Chris B. for Python can't loop regex, replacemt and strings in embedded for-loop Chris B. 2009-06-02T23:16:11Z 2009-06-02T23:16:11Z <p>The code doesn't compile, let alone run. I'm not sure what the problem is, since it should work in theory but that code doesn't work at all, practice or not.</p> <p>A couple points:</p> <ol> <li>You don't need to compile the regex--it's automatically compiled and cached. You don't get <em>that</em> much of a speed boost, and you're not saving them for reuse anyway.</li> <li>Looping over <code>fileReader</code> twice is all kinds of strange. I think you only need the single loop, assuming <code>column</code> is the same as <code>column1</code>.</li> <li>Naming variables things other than <code>column</code> and <code>column1</code> is going to help you understand your code, let alone other people.</li> <li>If <code>inputToken</code> exists in a single column, then looping over it is going to loop over the string value, not the values in the column.</li> </ol> <p>I'd try this: load the values in <code>inputReader</code> into a list. Then loop over the <code>fileReader</code>, reading each regex in turn. With each one, run it against the values in the list of words you created, and produce output appropriately.</p> http://stackoverflow.com/questions/812242/how-can-i-get-my-setup-py-to-use-a-relative-path-to-my-files 3 How can I get my setup.py to use a relative path to my files? Chris B. 2009-05-01T17:00:33Z 2009-05-03T03:46:00Z <p>I'm trying to build a Python distribution with <code>distutils</code>. Unfortunately, my directory structure looks like this:</p> <pre> /code /mypackage __init__.py file1.py file2.py /subpackage __init__.py /build setup.py </pre> <p>Here's my <code>setup.py</code> file:</p> <pre><code>from distutils.core import setup setup( name = 'MyPackage', description = 'This is my package', packages = ['mypackage', 'mypackage.subpackage'], package_dir = { 'mypackage' : '../mypackage' }, version = '1', url = 'http://www.mypackage.org/', author = 'Me', author_email = 'me@here.com', ) </code></pre> <p>When I run <code>python setup.py sdist</code> it correctly generates the manifest file, but doesn't include my source files in the distribution. Apparently, it creates a directory to contain the source files (i.e. <code>mypackage1</code>) then copies each of the source files to <code>mypackage1/../mypackage</code> which puts them <em>outside</em> of the distribution.</p> <p>How can I correct this, without forcing my directory structure to conform to what <code>distutils</code> expects?</p> http://stackoverflow.com/questions/599205/how-can-i-manually-register-distributions-with-pkgresources 1 How can I manually register distributions with pkg_resources? Chris B. 2009-03-01T03:40:26Z 2009-04-13T18:24:17Z <p>I'm trying to get a package installed on Google App Engine. The package relies rather extensively on <code>pkg_resources</code>, but there's no way to run <code>setup.py</code> on App Engine.</p> <p>There's no platform-specific code in the source, however, so it's no problem to just zip up the source and include those in the system path. And I've gotten a version of <code>pkg_resources</code> installed and working as well.</p> <p>The only problem is getting the package actually <em>registered</em> with <code>pkg_resources</code> so when it calls <code>iter_entry_points</code> it can find the appropriate plugins.</p> <p>What methods do I need to call to register modules on <code>sys.path</code> with all the appropriate metadata, and how do I figure out what that metadata needs to be?</p> http://stackoverflow.com/questions/722992/using-paver-and-nose-together-with-an-atypical-directory-structure 2 Using paver and nose together with an atypical directory structure Chris B. 2009-04-06T20:08:06Z 2009-04-06T23:21:58Z <p>I'm trying to write a task for <code>Paver</code> that will run <code>nosetests</code> on my files.</p> <p>My directory structure looks like this:</p> <pre><code>project/ file1.py file2.py file3.py build/ pavement.py subproject/ file4.py test/ file5.py file6.py </code></pre> <p>Doctests (using the <code>--with_doctest</code> option) should be run on all the *.py files, while only the files under <code>project/test</code> (in this example, <code>file5.py</code> and <code>file6.py</code>) should be searched for test routines.</p> <p>I can't seem to figure out how to do this--I can write a custom plugin for <code>nose</code> which includes the correct files, but I can't seem to get <code>paver</code> to build and install it before calling the <code>nosetests</code> task. I also can't find a way to get <code>paver</code> to pass a list of files to test to <code>nosetests</code> on the command line.</p> <p>What's the best way of getting this to work?</p> http://stackoverflow.com/questions/631813/how-do-i-assign-a-version-number-for-a-python-package-using-svn-and-distutils 4 How do I assign a version number for a Python package using SVN and distutils? Chris B. 2009-03-10T19:08:49Z 2009-03-10T21:20:53Z <p>I'm writing a Python package. The package needs to know its version number internally, while also including this version in the <code>setup.py</code> script for <code>distutils</code>.</p> <p>What's the best way of doing this, so that the version number doesn't need to be maintained in two separate places? I don't want to import the <code>setup.py</code> script from the rest of my library (that seems rather silly) and I don't want to import my library from the <code>setup.py</code> script (likewise). Ideally, I'd just set a keyword in <code>svn</code> and have that automatically substituted into the files, but that doesn't seem to be possible in <code>svn</code>. I could read a common text file containing the version number in both places--is this the best solution?</p> <p><strong>To clarify</strong>: I want to maintain the version number in <em>one</em> place. Yes, I could put a variable in the package, and again in the <code>setup.py</code> file. But then they'd inevitably get out of sync.</p> http://stackoverflow.com/questions/631996/figure-out-whether-python-module-is-installed-or-in-develop-mode-programmatically/632051#632051 4 Answer by Chris B. for figure out whether python module is installed or in develop mode programmatically Chris B. 2009-03-10T20:08:36Z 2009-03-10T20:21:54Z <p>Isn't it easier, and cleaner, to just set an environment variable on your development machine, and test for <code>os.environ['development_mode']</code> (or a setting of your choice)?</p> http://stackoverflow.com/questions/625042/what-will-be-the-upgrade-path-to-python-3-x-for-google-app-engine-applications/625119#625119 2 Answer by Chris B. for What will be the upgrade path to Python 3.x for Google App Engine Applications? Chris B. 2009-03-09T05:30:17Z 2009-03-09T05:30:17Z <p>It is impossible to currently use Python 3.x applications on Google App Engine. It's simply not supported, and I'd expect to see support for Java (or Perl, or PHP) before Python 3.x.</p> <p>That said, the upgrade path is likely to be very simple from Python 2.5 to Python 3.x on App Engine. If/when the capability is added, as long as you've coded your application anticipating <a href="http://docs.python.org/dev/3.0/whatsnew/3.0.html" rel="nofollow">the changes in Python itself</a>, it should be very straightforward. The heavy lifting has to be done by the Google Engineers. And you'll no doubt be able to keep your application at Python 2.5 for a long while after Python 3.0 is available.</p> http://stackoverflow.com/questions/625083/python-init-and-self-what-do-they-do/625098#625098 15 Answer by Chris B. for Python __init__ and self what do they do? Chris B. 2009-03-09T05:18:46Z 2009-03-09T05:18:46Z <p>In this code:</p> <pre><code>class A(object): def __init__(self): self.x = 'Hello' def method_a(self, foo): print self.x + ' ' + foo </code></pre> <p>... the <code>self</code> variable represents the instance of the object itself. Most object-oriented languages pass this as a hidden parameter to the methods defined on an object; Python does not. You have to declare it explicitly. When you create an instance of the <code>A</code> class and call its methods, it will be passed automatically, as in ...</p> <pre><code>a = A() # We do not pass any argument to the __init__ method a.method_a('Sailor!') # We only pass a single argument </code></pre> <p>The <code>__init__</code> method is roughly what represents a constructor in Python. When you call <code>A()</code> Python creates an object for you, and passes it as the first parameter to the <code>__init__</code> method. Any additional parameters (e.g., <code>A(24, 'Hello')</code>) will also get passed as arguments--in this case causing an exception to be raised, since the constructor isn't expecting them.</p> http://stackoverflow.com/questions/624926/how-to-detect-whether-a-python-variable-is-a-function/624966#624966 4 Answer by Chris B. for how to detect whether a python variable is a function? Chris B. 2009-03-09T03:58:55Z 2009-03-09T03:58:55Z <p><code>callable(x)</code> <em>will</em> return true if the object passed can be called in Python, but the function does not exist in Python 3.0, and properly speaking will not distinguish between:</p> <pre><code>class A(object): def __call__(self): return 'Foo' def B(): return 'Bar' a = A() b = B print type(a), callable(a) print type(b), callable(b) </code></pre> <p>You'll get <code>&lt;class 'A'&gt; True</code> and <code>&lt;type function&gt; True</code> as output.</p> <p><code>isinstance</code> works perfectly well to determine if something is a function (try <code>isinstance(b, types.FunctionType)</code>); if you're really interested in knowing if something can be called, you can either use <code>hasattr(b, '__call__')</code> or just try it.</p> <pre><code>test_as_func = True try: b() except TypeError: test_as_func = False except: pass </code></pre> <p>This, of course, won't tell you whether it's callable but throws a <code>TypeError</code> when it executes, or isn't callable in the first place. That may not matter to you.</p> http://stackoverflow.com/questions/623054/for-my-app-how-many-threads-would-be-optimal/623073#623073 1 Answer by Chris B. for For my app, how many threads would be optimal? Chris B. 2009-03-08T04:58:47Z 2009-03-08T04:58:47Z <p>You can go higher that two. How much higher depends entirely on the hardware of the system you're running this on, how much processing is going on after the network operations, and what else is running on the machine at the time.</p> <p>Since it's being written in Python (and being called "simple") I'm going to assume you're not exactly concerned with squeezing every ounce of performance out of the thing. In that case, I'd suggest just running some tests under common working conditions and seeing how it performs. I'd guess around 5-10 is probably reasonable, but that's a complete stab in the dark.</p> <p>Since you're using a dual-core machine, I'd highly recommend checking out the <a href="http://docs.python.org/library/multiprocessing.html" rel="nofollow">Python multiprocessing module</a> (in Python 2.6). It will let you take advantage of multiple processors on your machine, which would be a significant performance boost.</p> http://stackoverflow.com/questions/621200/how-to-filter-myself-out-of-google-analytics-with-a-dynamic-ip-address/621214#621214 4 Answer by Chris B. for How to filter myself out of Google Analytics with a dynamic IP address? Chris B. 2009-03-07T03:00:52Z 2009-03-07T03:00:52Z <p>There are a couple ways of doing this. If you know the range of IP addresses you're accessing your site from (and don't mind filtering them <em>all</em> out) you can set up an "Exclude" filter for that range of IP addresses. If that's too restrictive, you can set a cookie using the Google Analytics code and filter on that. Both techniques are documented at <a href="http://www.google.com/support/googleanalytics/bin/answer.py?answer=55481&amp;cbid=-bki5yr08j02a&amp;src=cb&amp;lev=answer" rel="nofollow">Google's help system</a>.</p> <p>Alternatively, if you're dynamically producing the pages on the server, you could simply not write the Google Analytics code into the pages in the first place, based on the currently logged in user. On my site, I'm choosing to write the code or not based on a few things, such as whether the website is running in debug mode or if an administrator is logged on.</p> http://stackoverflow.com/questions/620530/whats-the-best-way-to-find-the-closest-matching-type-to-an-existing-type 0 What's the best way to find the closest matching type to an existing type? Chris B. 2009-03-06T21:37:18Z 2009-03-07T00:40:06Z <p>I've got a registry of classes and types in Python 2.5, like so:</p> <pre><code>class ClassA(object): pass class ClassB(ClassA): pass MY_TYPES = { basestring : 'A string', int : 'An integer', ClassA : 'This is ClassA or a subclass', } </code></pre> <p>I'd like to be able to pass types to a function, and have it look up the closest matching type in the hierarchy. So, looking up <code>str</code> would return <code>"A string"</code> and looking up <code>ClassB</code> would return <code>"This is ClassA or a subclass"</code> The problem is, I don't know how to find the superclass (or, rather, trace the MRO chain) of a type object.</p> <p>What's the best way of handling this?</p> http://stackoverflow.com/questions/617050/what-would-you-name-this-object/617073#617073 0 Answer by Chris B. for What would you name this object? Chris B. 2009-03-05T22:59:56Z 2009-03-05T23:06:56Z <p><code>RowReader</code>? <code>RowByColumn</code>? <code>ColumnGrabber</code>?</p> <p>Really, the issue is that you should be designing the <code>Row</code> object--an object that encapsulates the data associated with a given row (the <code>ID</code>, I guess in your case) and the methods <em>on</em> that object should be returning the values. Call the <code>Row</code> object the "<code>Row</code>" or "<code>Case</code>" or "<code>DataReference</code>" or whatever makes sense for your application. Then the methods are easy to name (e.g., <code>Row.getColumn('col2')</code>)</p> <p><strong>Note</strong>: <code>RowReader</code>, on reflection, is a terrible name for this class. It's ambiguous, because it's reading <em>columns</em>, not rows. <code>ColumnReader</code> is also bad, for the opposite reason (it reads columns by reading a row). The <code>Row</code> needs the class, not the function.</p> http://stackoverflow.com/questions/612788/best-python-templating-library-to-facilitate-code-generation/612834#612834 1 Answer by Chris B. for Best Python templating library to facilitate code generation. Chris B. 2009-03-04T22:50:40Z 2009-03-04T22:50:40Z <p>The most important concern is whether you can live with the syntax the templates require. Second and third (depending on your application needs) would be speed and ease of distribution.</p> <p>I looked at all of them, but the only syntax I could stand was <a href="http://jinja.pocoo.org/2/" rel="nofollow" title="Jinja">Jinja</a>. Jinja has the advantage of supporting a lot of Python constructs, so it's very easy to add snippets of functionality to the templates as needed, without coding special tags. Most of what requires tags in other template systems is handled by macros in Jinja.</p> <p>Of course, if you're looking for something easy and quick, it's hard to beat the <a href="http://docs.python.org/library/string.html#template-strings" rel="nofollow">Python templating API</a> in the core language.</p> http://stackoverflow.com/questions/609487/enum-vs-lookup-table-vs-enum-reflection-vs-state-pattern/609510#609510 1 Answer by Chris B. for Enum vs Lookup table vs Enum reflection vs State pattern Chris B. 2009-03-04T07:07:06Z 2009-03-04T22:42:08Z <p>I'd create a Status class that contains the differences, and call those. So (in Python):</p> <pre><code>class StatusZero(object): def call_me(self, app): print 'Hello, from ' + app.name return db.prepare_specific_status_zero_request() class StatusOne(object): def call_me(self, app): print 'Hi, from ' + app.name return db.prepare_specific_status_one_request() states = { 'status_zero' : StatusZero(), 'status_one' : StatusOne() } class Application(object): name = 'My App' status = states['status_zero'] def change_state(self, state): status = state def call_me(self): state_key = self.status.call_me(self) self.change_state(states[state_key]) </code></pre> <p>Fast, easy to keep the functionality compartmentalized, and with a reasonable inheritance pattern between the states you can share the functions which don't differ.</p> http://stackoverflow.com/questions/1602934/what-is-a-good-way-to-test-if-a-key-exists-in-python-dictionary/1602964#1602964 Comment by Chris B. on What is a good way to test if a Key exists in Python Dictionary Chris B. 2009-10-21T19:16:36Z 2009-10-21T19:16:36Z I fully agree. But if you only need to know if a key exists, or you need to distinguish between a case where the key is defined and a case where you are using a default, <code>in</code> is the best way of doing it. http://stackoverflow.com/questions/1463710/how-do-i-get-this-program-to-start-over-in-python Comment by Chris B. on How do I get this program to start over in python? Chris B. 2009-09-23T03:04:20Z 2009-09-23T03:04:20Z You're actually not talking about recursion, where the result of an operation depends on repeating the operation with, one assumes, a different input. Factorials are defined recursively (where n! = n*(n-1)!). http://stackoverflow.com/questions/1458203/reading-a-float-from-string/1458217#1458217 Comment by Chris B. on Reading a float from string Chris B. 2009-09-22T08:15:50Z 2009-09-22T08:15:50Z I wasn't using &quot;precision&quot; in the strictest sense, but in the &quot;significant digits to the right of the decimal&quot; sense. And while the Python <code>Decimal</code> class <i>may</i> be a decimal floating point system, the fact is it does support &quot;exact unrounded decimal arithmetic&quot;. And it seems that an internal variable to track the precision is <i>exactly</i> what the original poster was looking for. http://stackoverflow.com/questions/1458203/reading-a-float-from-string Comment by Chris B. on Reading a float from string Chris B. 2009-09-22T05:30:56Z 2009-09-22T05:30:56Z This is a substantially different question than you originally asked. http://stackoverflow.com/questions/101268/hidden-features-of-python/109182#109182 Comment by Chris B. on Hidden features of Python Chris B. 2009-06-17T18:33:01Z 2009-06-17T18:33:01Z Yes, such &quot;cute&quot; features as nested scopes and generators are better left to those who know what they're doing. And anyone who wants to be compatible with future versions of Python. For nested scopes and generators, &quot;future versions&quot; of Python means 2.2 and 2.5, respectively. For the with statement, &quot;future versions&quot; of Python means 2.6. http://stackoverflow.com/questions/60208/replacements-for-switch-statement-in-python/102990#102990 Comment by Chris B. on Replacements for switch statement in python? Chris B. 2009-06-05T15:14:41Z 2009-06-05T15:14:41Z I think it's clearer to use .get() on the dict with the default specified. I prefer to leave Exceptions for exceptional circumstances, and it cuts three lines of code and a level of indentation without being obscure. http://stackoverflow.com/questions/953027/explicit-access-to-pythons-built-in-scope/953044#953044 Comment by Chris B. on Explicit access to Python's built in scope Chris B. 2009-06-04T21:01:53Z 2009-06-04T21:01:53Z <b>builtins</b> is an implementation detail of CPython. I wouldn't rely on it. http://stackoverflow.com/questions/945972/is-there-a-multiple-format-specifier-in-python/945994#945994 Comment by Chris B. on is there a multiple format specifier in Python? Chris B. 2009-06-03T19:12:53Z 2009-06-03T19:12:53Z Note that the * operator isn't specific to format specifiers; it tells Python to duplicate the preceding sequence X times. Since a string is a sequence, and format specifiers are just strings ... http://stackoverflow.com/questions/812242/how-can-i-get-my-setup-py-to-use-a-relative-path-to-my-files/814118#814118 Comment by Chris B. on How can I get my setup.py to use a relative path to my files? Chris B. 2009-05-04T23:55:22Z 2009-05-04T23:55:22Z I don't much care what the structure in the distribution file looks like, as long as it does the right thing when users try and install it using easy_install. But the Python documentation is absolutely horrible when it comes to these details--I have no idea what the structure is even supposed to look like. And I'm still wrapping my head around the idea that you run a script in the distribution before it's installed in order to install the distribution. http://stackoverflow.com/questions/90202/can-i-merge-two-microsoft-word-documents-reliably-with-subversion/90230#90230 Comment by Chris B. on Can I merge two Microsoft Word documents reliably with Subversion? Chris B. 2009-03-11T19:32:09Z 2009-03-11T19:32:09Z This is flatly wrong. See: <a href="http://subversion.tigris.org/faq.html#binary-files" rel="nofollow">subversion.tigris.org/faq.html#binary-files/&hellip;</a> http://stackoverflow.com/questions/631996/figure-out-whether-python-module-is-installed-or-in-develop-mode-programmatically/632051#632051 Comment by Chris B. on figure out whether python module is installed or in develop mode programmatically Chris B. 2009-03-11T19:20:40Z 2009-03-11T19:20:40Z No, but it's still generally a bad idea to base behavior on the manner of installation. If you want to debug a particular piece of code which only runs outside of development mode, you have to edit the code or reinstall the package. With the environment setting, you just set the variable. http://stackoverflow.com/questions/631813/how-do-i-assign-a-version-number-for-a-python-package-using-svn-and-distutils/631985#631985 Comment by Chris B. on How do I assign a version number for a Python package using SVN and distutils? Chris B. 2009-03-10T23:57:11Z 2009-03-10T23:57:11Z Is that an unusual structure? The distutils documentation doesn't mention there's an expected way to arrange things. http://stackoverflow.com/questions/631813/how-do-i-assign-a-version-number-for-a-python-package-using-svn-and-distutils/632040#632040 Comment by Chris B. on How do I assign a version number for a Python package using SVN and distutils? Chris B. 2009-03-10T20:12:21Z 2009-03-10T20:12:21Z Isn't it the same setup.py that gets executed before the package gets installed, as gets executed to create the installer? Or does distutils write out a different setup.py? http://stackoverflow.com/questions/631813/how-do-i-assign-a-version-number-for-a-python-package-using-svn-and-distutils/631985#631985 Comment by Chris B. on How do I assign a version number for a Python package using SVN and distutils? Chris B. 2009-03-10T20:05:33Z 2009-03-10T20:05:33Z Are you suggesting I import my package from within the setup.py script? That won't work, will it? http://stackoverflow.com/questions/631813/how-do-i-assign-a-version-number-for-a-python-package-using-svn-and-distutils/631985#631985 Comment by Chris B. on How do I assign a version number for a Python package using SVN and distutils? Chris B. 2009-03-10T19:56:57Z 2009-03-10T19:56:57Z That doesn't tell me the version in setup.py, does it?