User Ned Batchelder - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T18:27:53Z http://stackoverflow.com/feeds/user/14343 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1732277/is-piston-ready-for-oauth 1 Is Piston ready for OAuth? Ned Batchelder 2009-11-13T22:23:18Z 2009-12-07T19:51:22Z <p>I tried using <a href="http://bitbucket.org/jespern/django-piston/overview/" rel="nofollow">Piston</a> for a simple API, hoping to use its OAuth support. But the first time I hit the endpoint after enabling OAuth, I got an error:</p> <pre><code>TemplateDoesNotExist: oauth/challenge.html </code></pre> <p>and sure enough, there is no such file. </p> <p>Does OAuth work in Piston? Am I making a stupid n00b mistake?</p> http://stackoverflow.com/questions/1856792/intelligently-launching-the-default-editor-from-inside-a-python-cli-program/1856911#1856911 5 Answer by Ned Batchelder for Intelligently launching the default editor from inside a Python CLI program? Ned Batchelder 2009-12-06T22:46:19Z 2009-12-06T22:56:09Z <p>You could try looking through the sources to Mercurial, which is written in Python.</p> <p>They use <code>os.environ</code> to read the value of environment variables <code>HGEDITOR</code>, <code>VISUAL</code>, and <code>EDITOR</code>, defaulting to vi. Then they use <code>os.system</code> to launch the editor on a temp file created with <code>tempfile.mkstemp</code>. When the editor is done, they read the file. If it has any real content in it, the operation continues, otherwise, it is aborted.</p> <p>If you want to see how Mercurial does it, the details are in <a href="http://selenic.com/repo/hg-stable/file/2770d03ae49f/mercurial/ui.py" rel="nofollow">ui.py</a> and <a href="http://selenic.com/repo/hg-stable/file/2770d03ae49f/mercurial/util.py" rel="nofollow">util.py</a>.</p> http://stackoverflow.com/questions/1855441/cos-returns-wrong-values/1855444#1855444 12 Answer by Ned Batchelder for cos returns wrong values? Ned Batchelder 2009-12-06T13:52:55Z 2009-12-06T13:52:55Z <p>cos expects radians, you are giving it degrees. Multiply your input value by 3.14159/180, and you will get the right answer.</p> http://stackoverflow.com/questions/1854806/is-there-an-open-source-python-library-for-sanitizing-html-and-removing-all-javas/1855343#1855343 4 Answer by Ned Batchelder for Is there an Open Source Python library for sanitizing HTML and removing all Javascript? Ned Batchelder 2009-12-06T13:03:37Z 2009-12-06T13:03:37Z <p>As Klaus mentions, the clear consensus in the community is to use BeautifulSoup for these tasks:</p> <pre><code>soup = BeautifulSoup.BeautifulSoup(html) for script_elt in soup.findAll('script'): script_elt.extract() html = str(soup) </code></pre> http://stackoverflow.com/questions/1854216/raise-unhandled-exceptions-in-a-thread-in-the-main-thread/1854263#1854263 2 Answer by Ned Batchelder for Raise unhandled exceptions in a thread in the main thread? Ned Batchelder 2009-12-06T03:39:43Z 2009-12-06T03:39:43Z <p>I wrote about <a href="http://nedbatchelder.com/blog/200711/rethrowing%5Fexceptions%5Fin%5Fpython.html" rel="nofollow">Re-throwing exceptions in Python</a>, including something very much like this as an example.</p> <p>On your worker thread you do this:</p> <pre><code>try: self.result = self.do_something_dangerous() except Exception, e: import sys self.exc_info = sys.exc_info() </code></pre> <p>and on your main thread you do this:</p> <pre><code>if self.exc_info: raise self.exc_info[1], None, self.exc_info[2] return self.result </code></pre> <p>The exception will appear in the main thread just as if it had been raised in the worker thread.</p> http://stackoverflow.com/questions/1853093/python-rawinput-into-dictionary-declared-in-a-class/1853278#1853278 2 Answer by Ned Batchelder for Python raw_input into dictionary declared in a class... Ned Batchelder 2009-12-05T20:02:38Z 2009-12-05T20:02:38Z <p>A few things:</p> <ol> <li><p>Move the initialization of your class attributes into an <code>__init__</code> method:</p></li> <li><p>Get rid of all the getters and setters as Jeffrey says. </p></li> <li><p>Use a dict that has module names as keys and grades as values:</p></li> </ol> <p>Some code snippets:</p> <pre><code>def __init__(self, firstName, lastName, age, studentID, degree): self.firstName = firstName self.lastName = lastName ... self.grades = {} </code></pre> <p>and:</p> <pre><code> while True: module_name = raw_input("Please enter the student's module name: ") if not module_name: break grade = raw_input("Please enter the grade for %s: " % module_name) student.grades[module_name] = grade </code></pre> http://stackoverflow.com/questions/1849827/what-are-your-favourite-subversion-tips-and-tricks/1849947#1849947 1 Answer by Ned Batchelder for what are your favourite subversion tips and tricks Ned Batchelder 2009-12-04T22:02:33Z 2009-12-04T22:02:33Z <p>It's great to be able to use sparse checkouts, where bulky uninteresting directories can be skipped: <a href="http://blogs.open.collab.net/svn/2009/03/sparse-directories-now-with-exclusion.html" rel="nofollow">http://blogs.open.collab.net/svn/2009/03/sparse-directories-now-with-exclusion.html</a></p> http://stackoverflow.com/questions/1837308/how-to-get-restructuredtext-to-add-a-class-to-every-html-p-tag/1837474#1837474 3 Answer by Ned Batchelder for How to get restructuredText to add a class to every html <p> tag? Ned Batchelder 2009-12-03T03:36:35Z 2009-12-03T19:48:20Z <p>You don't say why you want to add a class to every paragraph, but it might be easier to take a different approach. For example, if you are trying to style the paragraphs, you can use a different CSS technique to select all the paragraphs in the output:</p> <p>CSS:</p> <pre><code>div.resttext p { /* all the styling you want... */ } </code></pre> <p>HTML:</p> <pre><code>&lt;div class='resttext'&gt; &lt;p&gt;Blah&lt;/p&gt; &lt;p&gt;Bloo&lt;/p&gt; &lt;/div&gt; </code></pre> <p>Update: since you are trying to use hyphenator.js, I would suggest using its <code>selectorfunction</code> setting to select the elements differently:</p> <pre><code>Hyphenator.config({ selectorfunction: function () { /* Use jQuery to find all the REST p tags. */ return $('div.resttext p'); } }); Hyphenator.run(); </code></pre> http://stackoverflow.com/questions/1835930/need-a-zip-of-python-2-6-for-windows/1836803#1836803 2 Answer by Ned Batchelder for Need a zip of Python 2.6 for windows Ned Batchelder 2009-12-03T00:07:31Z 2009-12-03T00:07:31Z <p>I have Pythons 2.3, 2.4, 2.5, 2.6, and 3.1 all installed on my PC. Download the .msi from python.org, and install it.</p> http://stackoverflow.com/questions/1811368/php-can-someone-explain-how-this-code-works-fibonacci/1811377#1811377 1 Answer by Ned Batchelder for PHP: Can someone explain how this code works? (Fibonacci) Ned Batchelder 2009-11-28T02:45:19Z 2009-11-28T02:45:19Z <p>The question mark is a conditional expression:</p> <pre><code>x ? a : b </code></pre> <p>evaluates to <code>a</code> if <code>x</code> is true, or <code>b</code> if it is false.</p> http://stackoverflow.com/questions/1811095/how-can-i-track-python-imports/1811099#1811099 3 Answer by Ned Batchelder for How can I track python imports Ned Batchelder 2009-11-28T00:19:32Z 2009-11-28T00:54:08Z <p>Try using <code>python -v</code> to run your program. It will trace the sequence of imports.</p> <p>Another option is <a href="http://pypi.python.org/pypi/pylint" rel="nofollow">pylint</a>, which will alert you to all sorts of issues, including cyclic imports.</p> http://stackoverflow.com/questions/1810514/dynamically-binding-python-methods-to-an-instance-correctly-binds-the-method-name/1810576#1810576 2 Answer by Ned Batchelder for Dynamically binding Python methods to an instance correctly binds the method names, but not the method Ned Batchelder 2009-11-27T20:45:37Z 2009-11-27T20:45:37Z <p>The problem is the variable <code>m</code> is left as <code>two</code> at the end of the loop, and that affects the definitions made during the loop. You can fix it by creating closures with nested functions:</p> <pre><code>for m in (one, two): def make_method(m): def new_method(self, *args, **kwargs): return bracketit(m(*args, **kwargs)) return new_method method = types.MethodType(make_method(m), c, C) setattr(C, m.__name__, method) </code></pre> <p>when run in your test code produces:</p> <pre><code>&lt;bound method C.new_method of &lt;__main__.C object at 0x0135EF30&gt;&gt; &lt;bound method C.new_method of &lt;__main__.C object at 0x0135EF30&gt;&gt; (3) (1) </code></pre> http://stackoverflow.com/questions/1810529/memorable-32-bit-value-as-a-constant/1810557#1810557 2 Answer by Ned Batchelder for Memorable 32-bit value as a constant Ned Batchelder 2009-11-27T20:37:40Z 2009-11-27T20:37:40Z <p>Here are a bunch of <a href="http://nedbatchelder.com/text/hexwords.html" rel="nofollow">hex words</a> that you can use to make a constant.</p> http://stackoverflow.com/questions/1810109/parsing-a-string-which-represents-a-list-of-tuples/1810254#1810254 2 Answer by Ned Batchelder for Parsing a string which represents a list of tuples Ned Batchelder 2009-11-27T19:03:19Z 2009-11-27T19:03:19Z <p>I've used <a href="http://stackoverflow.com/questions/28369/is-safeeval-really-safe">safe_eval</a> for jobs like this in the past. </p> http://stackoverflow.com/questions/1809958/hide-stderr-output-in-unit-tests/1809977#1809977 2 Answer by Ned Batchelder for Hide stderr output in unit tests Ned Batchelder 2009-11-27T17:53:31Z 2009-11-27T17:59:11Z <p>Another possibility (besides assigning to <code>sys.stderr</code>) is to structure your code to write errors to a file provided, but to default that file to sys.stderr. Then you can provide a DevNull writer during testing.</p> <p>If you do want to reassign sys.stderr, you can use the unittest framework to manage it for you:</p> <pre><code>class DevNull(object): def write(self, data): pass class MyTestCase(unittest.TestCase): def setUp(self): self.old_stderr = sys.stderr sys.stderr = DevNull() def tearDown(self): sys.stderr = self.old_stderr </code></pre> <p>This way, every test dev-null's stderr, but then restores it at the end of the test.</p> http://stackoverflow.com/questions/1809805/why-say-x-x-in-python/1809824#1809824 14 Answer by Ned Batchelder for Why say x = x in Python? Ned Batchelder 2009-11-27T17:13:34Z 2009-11-27T17:13:34Z <p>There is no point to that assignment. It's probably just left over and should be removed. The next function is nearly identical, and doesn't have it.</p> http://stackoverflow.com/questions/1796510/accessing-a-python-traceback-from-the-c-api/1796538#1796538 0 Answer by Ned Batchelder for Accessing a Python traceback from the C API Ned Batchelder 2009-11-25T12:13:15Z 2009-11-25T12:20:21Z <p>One principal I've found useful in writing C extensions is to use each language where it's best suited. So if you have a task to do that would be best implemented in Python, implement in Python, and if it would be best implemented in C, do it in C. Interpreting tracebacks is best done in Python for two reasons: first, because Python has the tools to do it, and second, because it isn't speed-critical.</p> <p>I would write a Python function to extract the info you need from the traceback, then call it from C.</p> <p>You could even go so far as to write a Python wrapper for your callable execution. Instead of invoking <code>someCallablePythonObject</code>, pass it as an argument to your Python function:</p> <pre><code>def invokeSomeCallablePythonObject(obj, args): try: result = obj(*args) ok = True except: # Do some mumbo-jumbo with the traceback, etc. result = myTraceBackMunger(...) ok = False return ok, result </code></pre> <p>Then in your C code, call this Python function to do the work. The key here is to decide pragmatically which side of the C-Python split to put your code.</p> http://stackoverflow.com/questions/1794346/accessing-xrange-internal-structure/1794387#1794387 0 Answer by Ned Batchelder for Accessing xrange internal structure Ned Batchelder 2009-11-25T03:07:16Z 2009-11-25T03:50:28Z <p>The ctypes module isn't meant for accessing Python internals. ctypes lets you deal with C libraries in C terms, but coding in Python.</p> <p>You probably want a C extension, which in many ways is the opposite of ctypes. With a C extension, you deal with Python code in Python terms, but code in C.</p> <p>UPDATED: Since you want pure Python, why do you need to access the internals of a built-in xrange object? xrange is very simple: create your own in Python, and do what you want with it.</p> http://stackoverflow.com/questions/1793660/python-analyzing-complex-statements-during-execution/1794254#1794254 0 Answer by Ned Batchelder for Python: Analyzing complex statements during execution Ned Batchelder 2009-11-25T02:15:36Z 2009-11-25T02:15:36Z <p>The Python interpreter doesn't give you a way to introspect the evaluation of an expression at runtime. The <code>sys.settrace()</code> function lets you register a callback that is invoked for every line of source code, but that's too coarse-grained for what you want to do.</p> <p>That said, I've experimented with a crazy hack to have the function invoked for every bytecode executed: <a href="http://nedbatchelder.com/blog/200804/wicked%5Fhack%5Fpython%5Fbytecode%5Ftracing.html" rel="nofollow">Python bytecode tracing</a>.</p> <p>But even then, I don't know how to find the execution state, for example, the values on the interpreter stack.</p> <p>I think the only way to get at what you want is to modify the code algorithmically. You could either transform your source (though you said you didn't want to parse the code), or you could transform the compiled bytecode. Neither is a simple undertaking, and I'm sure there are a dozen difficult hurdles to overcome if you try it.</p> <p>Sorry to be discouraging...</p> <p>BTW: What application do you have for this sort of technology?</p> http://stackoverflow.com/questions/1793957/how-to-make-uniques-in-django-models-and-also-index-a-column-in-django/1794228#1794228 3 Answer by Ned Batchelder for How to make uniques in Django Models? And also index a column in Django. Ned Batchelder 2009-11-25T02:07:55Z 2009-11-25T02:07:55Z <p>About the indexes: you don't need to do anything for <code>content</code>, since it is a primary key, it will be indexed. For <code>ip</code>, just add <code>index=True</code> to the <code>CharField</code> constructor call:</p> <pre><code>ip = models.CharField(max_length=200, blank=True, index=True) </code></pre> http://stackoverflow.com/questions/1793968/a-better-way-to-loop-through-multiple-lists-in-a-django-template/1794216#1794216 0 Answer by Ned Batchelder for A better way to loop through multiple lists in a django template Ned Batchelder 2009-11-25T02:05:53Z 2009-11-25T02:05:53Z <p>If you find your view to be slow, the problem is often in the database. Are you sure you know what queries are going to the database? It's possible you can make a small change that would greatly reduce the db traffic.</p> http://stackoverflow.com/questions/1794179/python-on-rails/1794205#1794205 3 Answer by Ned Batchelder for Python on Rails? Ned Batchelder 2009-11-25T02:02:14Z 2009-11-25T02:02:14Z <p>I think one of the things that people like about RoR is the domain-specific language (DSL) style of programming. This is something that Ruby is much better at than Python.</p> http://stackoverflow.com/questions/1790068/why-dont-people-just-stop-developing-sites-to-cater-to-ie6/1790096#1790096 0 Answer by Ned Batchelder for Why don't people just stop developing sites to cater to IE6? Ned Batchelder 2009-11-24T13:32:56Z 2009-11-24T13:32:56Z <p>I develop sites for the general public. If 15% of them are still using IE6, I have to decide whether my site not working is enough to get them to upgrade their browser, or if they'll just not use my site.</p> <p>I usually decide that the user won't upgrade, so I support IE6.</p> <p>Some people are not in control of their browser version, and cannot upgrade it. For example, locked down PCs at work.</p> http://stackoverflow.com/questions/1788929/which-tools-for-drawing-entity-relationship-diagram-online-and-share-with-colleag/1789993#1789993 1 Answer by Ned Batchelder for which tools for drawing entity relationship diagram online and share with colleagues? Ned Batchelder 2009-11-24T13:16:45Z 2009-11-24T13:16:45Z <p><a href="http://yuml.me/" rel="nofollow">http://yuml.me/</a> is very impressive, if a little inconvenient. It's a URL-based API to an online drawing engine.</p> http://stackoverflow.com/questions/1787056/where-does-pythons-pydoc-help-function-get-its-content-from/1789495#1789495 2 Answer by Ned Batchelder for Where does pythons pydoc help function get its content from. Ned Batchelder 2009-11-24T11:30:41Z 2009-11-24T11:30:41Z <p>The <code>help</code> function (implemented in the <code>pydoc</code> module) isn't prepared to find per-instance docstrings. I took a quick look through the module to see if there was a way to provide explicit help, but there doesn't seem to be. It uses the <code>inspect</code> module to determine what kind of thing it is, and your myFunc doesn't look like a function, it looks like an instance. So pydoc prints help about the instance's class instead.</p> <p>It'd be nice if similar to <code>__doc__</code> you could add a <code>__help__</code> attribute, but there's no support for that. </p> <p>I hesitate to suggest it, but your best bet might be to define a new <code>help</code> function:</p> <pre><code>old_help = help def help(thing): if hasattr(thing, '__help__'): print thing.__help__ else: old_help(thing) </code></pre> <p>and then put a <code>__help__</code> attribute on your instances:</p> <pre><code>class myCallable: def __init__(self, doc): self.__doc__ = doc self.__help__ = doc </code></pre> http://stackoverflow.com/questions/1784971/managing-args-variance-in-calls-to-functions/1785214#1785214 1 Answer by Ned Batchelder for Managing *args variance in calls to functions Ned Batchelder 2009-11-23T18:56:30Z 2009-11-23T18:56:30Z <p>I think the answers you have here are correct. Here's a fully fleshed out example:</p> <pre><code>class MyObject(object): def foo(self, bar, *uks): return self.other_method(1, uks) def other_method(self, x, uks): print "uks is %r" % (uks,) # sample data... a, b, c, d = 'a', 'b', 'c', 'd' instance = MyObject() print "Called as separate arguments:" instance.foo(1234, a, b, c, d) print "Called as a list:" p = [a, b, c, d] instance.foo(1234, *p) </code></pre> <p>When run, this prints:</p> <pre><code>Called as separate arguments: uks is ('a', 'b', 'c', 'd') Called as a list: uks is ('a', 'b', 'c', 'd') </code></pre> <p>You said on Alex's answer that you got <code>([a, b, c, d],)</code>, but I don't see how.</p> http://stackoverflow.com/questions/1780174/split-dictionary-of-lists-into-list-of-dictionaries/1780232#1780232 0 Answer by Ned Batchelder for Split dictionary of lists into list of dictionaries Ned Batchelder 2009-11-22T22:25:02Z 2009-11-22T22:25:02Z <pre><code>d = {'key1': [1, 2, 3], 'key2': [4, 5, 6]} keys = d.keys() vals = zip(*[d[k] for k in keys]) l = [dict(zip(keys, v)) for v in vals] print l </code></pre> <p>produces</p> <pre><code>[{'key2': 4, 'key1': 1}, {'key2': 5, 'key1': 2}, {'key2': 6, 'key1': 3}] </code></pre> http://stackoverflow.com/questions/1778670/when-should-i-drop-support-for-python2-4-on-my-public-python-library/1778723#1778723 3 Answer by Ned Batchelder for When should I drop support for python2.4 on my public python library? Ned Batchelder 2009-11-22T13:38:34Z 2009-11-22T13:38:34Z <p>You don't <em>have</em> to drop support for 2.4 in order to add support for 3.x, as I'm sure you know. I've made coverage.py run on 2.3 through 3.1 with the same code. It's not always pretty, but it's possible: <a href="http://nedbatchelder.com/blog/200910/running%5Fthe%5Fsame%5Fcode%5Fon%5Fpython%5F2x%5Fand%5F3x.html" rel="nofollow">Running the same code on Python 2.x and 3.x</a>.</p> http://stackoverflow.com/questions/1776625/is-chars4-and-4chars-the-same-in-c-why/1776629#1776629 4 Answer by Ned Batchelder for Is chars[4] and 4[chars] the same in C? Why? Ned Batchelder 2009-11-21T20:13:12Z 2009-11-21T20:13:12Z <p>Because a[b] is exactly the same as *(a+b), and + is commutatitve.</p> <p><code>chars[4]</code> is <code>*(chars+4)</code>, and <code>4[chars]</code> is <code>*(4+chars)</code></p> http://stackoverflow.com/questions/1770701/list-of-specific-class-names-in-python/1771384#1771384 1 Answer by Ned Batchelder for List of specific class names in Python Ned Batchelder 2009-11-20T15:50:35Z 2009-11-20T15:50:35Z <p>You can also use metaclasses to collect up the classes as they are defined:</p> <pre><code>class AllSeeingMetaClass(type): # This will be a list of all the classes that use us as a metaclass. the_classes = [] def __new__(meta, classname, bases, classDict): # Invoked as new classes are defined. print "Defining %r" % classname new_class = type.__new__(meta, classname, bases, classDict) meta.the_classes.append(new_class) return new_class class MyBase(object): # A base class that pulls in our metaclass. __metaclass__ = AllSeeingMetaClass class Cat(MyBase): def __init__(self): pass class Dog(MyBase): def __init__(self): pass print AllSeeingMetaClass.the_classes </code></pre> <p>prints:</p> <pre><code>Defining 'MyBase' Defining 'Cat' Defining 'Dog' [&lt;class '__main__.MyBase'&gt;, &lt;class '__main__.Cat'&gt;, &lt;class '__main__.Dog'&gt;] </code></pre> http://stackoverflow.com/questions/1859072/python-continuing-to-next-iteration-in-outer-loop Comment by Ned Batchelder on Python: Continuing to next iteration in outer loop Ned Batchelder 2009-12-07T13:35:32Z 2009-12-07T13:35:32Z Oh, please don't use that goto joke! It's remarkably clever, but you will be sad later if you put it into your code. http://stackoverflow.com/questions/1854806/is-there-an-open-source-python-library-for-sanitizing-html-and-removing-all-javas/1855343#1855343 Comment by Ned Batchelder on Is there an Open Source Python library for sanitizing HTML and removing all Javascript? Ned Batchelder 2009-12-06T16:56:27Z 2009-12-06T16:56:27Z On second thought, since you are doing this to prevent security problems, you really do need a whitelist of allowed markup. There are just too many different ways to sneak bad content past blacklist filters. http://stackoverflow.com/questions/1855441/cos-returns-wrong-values/1855444#1855444 Comment by Ned Batchelder on cos returns wrong values? Ned Batchelder 2009-12-06T15:42:53Z 2009-12-06T15:42:53Z Spooky: glad it worked. Standard stackoverflow etiquette is to accept the answer if it is correct. http://stackoverflow.com/questions/1854216/raise-unhandled-exceptions-in-a-thread-in-the-main-thread/1854263#1854263 Comment by Ned Batchelder on Raise unhandled exceptions in a thread in the main thread? Ned Batchelder 2009-12-06T13:00:58Z 2009-12-06T13:00:58Z I'm not sure what your question about self is. This code came from an object that is used to defer work onto a worker thread, so the same object runs code in the worker and main threads. http://stackoverflow.com/questions/1853093/python-rawinput-into-dictionary-declared-in-a-class/1853278#1853278 Comment by Ned Batchelder on Python raw_input into dictionary declared in a class... Ned Batchelder 2009-12-05T20:09:46Z 2009-12-05T20:09:46Z @luc: thanks, that was an oversight on my part. Fixing it is left as an exercise for the OP (especially since this smells like homework...) http://stackoverflow.com/questions/1835930/need-a-zip-of-python-2-6-for-windows/1836803#1836803 Comment by Ned Batchelder on Need a zip of Python 2.6 for windows Ned Batchelder 2009-12-03T15:22:49Z 2009-12-03T15:22:49Z Yes, I use a new cmd window because usually when I have to change Python versions, I also need to make other changes, the Python path for example, or environment variables for django settings, whatever. I've just gotten in the habit of starting new cmds for new environments. http://stackoverflow.com/questions/1835930/need-a-zip-of-python-2-6-for-windows/1836803#1836803 Comment by Ned Batchelder on Need a zip of Python 2.6 for windows Ned Batchelder 2009-12-03T03:42:32Z 2009-12-03T03:42:32Z One of them is the one registered as handling .py files, so I can just run those directly. If I need to use a specific version, I start a new command shell, set the PATH to point to the proper Python version, then use &quot;python myprog.py&quot; to run it explicitly. http://stackoverflow.com/questions/1811095/how-can-i-track-python-imports/1811097#1811097 Comment by Ned Batchelder on How can I track python imports Ned Batchelder 2009-11-28T00:22:54Z 2009-11-28T00:22:54Z It is very possible to get cyclic imports. They won't loop infinitely, but they can create problems where a function isn't defined when needed because two files import each other. http://stackoverflow.com/questions/1810529/memorable-32-bit-value-as-a-constant/1810536#1810536 Comment by Ned Batchelder on Memorable 32-bit value as a constant Ned Batchelder 2009-11-27T20:38:10Z 2009-11-27T20:38:10Z I don't get it: how is 0xDEADBEEF a memory boundary? http://stackoverflow.com/questions/1809958/hide-stderr-output-in-unit-tests/1809962#1809962 Comment by Ned Batchelder on Hide stderr output in unit tests Ned Batchelder 2009-11-27T18:12:21Z 2009-11-27T18:12:21Z The reason to store the backup is so that nothing is absolute: who knows if some other larger code entity changed sys.stderr before you got invoked? This way, you are simply undoing your first action. http://stackoverflow.com/questions/1793957/how-to-make-uniques-in-django-models-and-also-index-a-column-in-django/1794228#1794228 Comment by Ned Batchelder on How to make uniques in Django Models? And also index a column in Django. Ned Batchelder 2009-11-25T14:47:09Z 2009-11-25T14:47:09Z I wasn't answering the question about uniques. The second bullet in the question asks about indexing ip. http://stackoverflow.com/questions/1776994/how-can-a-python-base-class-tell-whether-a-sub-class-has-overriden-its-methods Comment by Ned Batchelder on How can a python base class tell whether a sub class has overriden its methods? Ned Batchelder 2009-11-21T22:55:54Z 2009-11-21T22:55:54Z I agree this shouldn't be wiki: there will be an answer that works and can be accepted. Also, I'd be interested to hear more about why you want to do this, not because you shouldn't, but because it sounds like one of those solutions to a problem that has a better and very different solution somewhere else. http://stackoverflow.com/questions/1769023/is-there-any-regular-expression-engine-which-do-just-in-time-compiling/1769147#1769147 Comment by Ned Batchelder on Is there any regular expression engine which do Just-In-Time compiling? Ned Batchelder 2009-11-20T19:21:34Z 2009-11-20T19:21:34Z The re module compiles and caches string regexes, so pre-compiling the regex often doesn't change the speed of the matching. http://stackoverflow.com/questions/1767673/find-following-tag-with-pyparsing Comment by Ned Batchelder on Find following tag with pyparsing Ned Batchelder 2009-11-20T16:53:05Z 2009-11-20T16:53:05Z That's very odd: I used your exact code, ran it at three different times, and it successfully parsed all 90 URLs that resulted. I'm on Python 2.5.4 on Windows with BeautifulSoup 3.0.7a. What errors are you seeing? http://stackoverflow.com/questions/1769332/script-to-remove-python-comments-docstrings/1769794#1769794 Comment by Ned Batchelder on Script to remove python comments/docstrings Ned Batchelder 2009-11-20T12:23:48Z 2009-11-20T12:23:48Z An interesting point!