User Ned Batchelder - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T18:27:53Zhttp://stackoverflow.com/feeds/user/14343http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1732277/is-piston-ready-for-oauth1Is Piston ready for OAuth?Ned Batchelder2009-11-13T22:23:18Z2009-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#18569115Answer by Ned Batchelder for Intelligently launching the default editor from inside a Python CLI program?Ned Batchelder2009-12-06T22:46:19Z2009-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#185544412Answer by Ned Batchelder for cos returns wrong values?Ned Batchelder2009-12-06T13:52:55Z2009-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#18553434Answer by Ned Batchelder for Is there an Open Source Python library for sanitizing HTML and removing all Javascript?Ned Batchelder2009-12-06T13:03:37Z2009-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#18542632Answer by Ned Batchelder for Raise unhandled exceptions in a thread in the main thread?Ned Batchelder2009-12-06T03:39:43Z2009-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#18532782Answer by Ned Batchelder for Python raw_input into dictionary declared in a class...Ned Batchelder2009-12-05T20:02:38Z2009-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#18499471Answer by Ned Batchelder for what are your favourite subversion tips and tricksNed Batchelder2009-12-04T22:02:33Z2009-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#18374743Answer by Ned Batchelder for How to get restructuredText to add a class to every html <p> tag?Ned Batchelder2009-12-03T03:36:35Z2009-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><div class='resttext'>
<p>Blah</p>
<p>Bloo</p>
</div>
</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#18368032Answer by Ned Batchelder for Need a zip of Python 2.6 for windowsNed Batchelder2009-12-03T00:07:31Z2009-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#18113771Answer by Ned Batchelder for PHP: Can someone explain how this code works? (Fibonacci)Ned Batchelder2009-11-28T02:45:19Z2009-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#18110993Answer by Ned Batchelder for How can I track python importsNed Batchelder2009-11-28T00:19:32Z2009-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#18105762Answer by Ned Batchelder for Dynamically binding Python methods to an instance correctly binds the method names, but not the methodNed Batchelder2009-11-27T20:45:37Z2009-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><bound method C.new_method of <__main__.C object at 0x0135EF30>>
<bound method C.new_method of <__main__.C object at 0x0135EF30>>
(3)
(1)
</code></pre>
http://stackoverflow.com/questions/1810529/memorable-32-bit-value-as-a-constant/1810557#18105572Answer by Ned Batchelder for Memorable 32-bit value as a constantNed Batchelder2009-11-27T20:37:40Z2009-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#18102542Answer by Ned Batchelder for Parsing a string which represents a list of tuplesNed Batchelder2009-11-27T19:03:19Z2009-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#18099772Answer by Ned Batchelder for Hide stderr output in unit testsNed Batchelder2009-11-27T17:53:31Z2009-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#180982414Answer by Ned Batchelder for Why say x = x in Python?Ned Batchelder2009-11-27T17:13:34Z2009-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#17965380Answer by Ned Batchelder for Accessing a Python traceback from the C APINed Batchelder2009-11-25T12:13:15Z2009-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#17943870Answer by Ned Batchelder for Accessing xrange internal structureNed Batchelder2009-11-25T03:07:16Z2009-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#17942540Answer by Ned Batchelder for Python: Analyzing complex statements during executionNed Batchelder2009-11-25T02:15:36Z2009-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#17942283Answer by Ned Batchelder for How to make uniques in Django Models? And also index a column in Django.Ned Batchelder2009-11-25T02:07:55Z2009-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#17942160Answer by Ned Batchelder for A better way to loop through multiple lists in a django templateNed Batchelder2009-11-25T02:05:53Z2009-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#17942053Answer by Ned Batchelder for Python on Rails?Ned Batchelder2009-11-25T02:02:14Z2009-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#17900960Answer by Ned Batchelder for Why don't people just stop developing sites to cater to IE6?Ned Batchelder2009-11-24T13:32:56Z2009-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#17899931Answer by Ned Batchelder for which tools for drawing entity relationship diagram online and share with colleagues?Ned Batchelder2009-11-24T13:16:45Z2009-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#17894952Answer by Ned Batchelder for Where does pythons pydoc help function get its content from.Ned Batchelder2009-11-24T11:30:41Z2009-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#17852141Answer by Ned Batchelder for Managing *args variance in calls to functionsNed Batchelder2009-11-23T18:56:30Z2009-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#17802320Answer by Ned Batchelder for Split dictionary of lists into list of dictionariesNed Batchelder2009-11-22T22:25:02Z2009-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#17787233Answer by Ned Batchelder for When should I drop support for python2.4 on my public python library?Ned Batchelder2009-11-22T13:38:34Z2009-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#17766294Answer by Ned Batchelder for Is chars[4] and 4[chars] the same in C? Why?Ned Batchelder2009-11-21T20:13:12Z2009-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#17713841Answer by Ned Batchelder for List of specific class names in PythonNed Batchelder2009-11-20T15:50:35Z2009-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'
[<class '__main__.MyBase'>, <class '__main__.Cat'>, <class '__main__.Dog'>]
</code></pre>
http://stackoverflow.com/questions/1859072/python-continuing-to-next-iteration-in-outer-loopComment by Ned Batchelder on Python: Continuing to next iteration in outer loopNed Batchelder2009-12-07T13:35:32Z2009-12-07T13:35:32ZOh, 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#1855343Comment by Ned Batchelder on Is there an Open Source Python library for sanitizing HTML and removing all Javascript?Ned Batchelder2009-12-06T16:56:27Z2009-12-06T16:56:27ZOn 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#1855444Comment by Ned Batchelder on cos returns wrong values?Ned Batchelder2009-12-06T15:42:53Z2009-12-06T15:42:53ZSpooky: 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#1854263Comment by Ned Batchelder on Raise unhandled exceptions in a thread in the main thread?Ned Batchelder2009-12-06T13:00:58Z2009-12-06T13:00:58ZI'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#1853278Comment by Ned Batchelder on Python raw_input into dictionary declared in a class...Ned Batchelder2009-12-05T20:09:46Z2009-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#1836803Comment by Ned Batchelder on Need a zip of Python 2.6 for windowsNed Batchelder2009-12-03T15:22:49Z2009-12-03T15:22:49ZYes, 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#1836803Comment by Ned Batchelder on Need a zip of Python 2.6 for windowsNed Batchelder2009-12-03T03:42:32Z2009-12-03T03:42:32ZOne 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 "python myprog.py" to run it explicitly.http://stackoverflow.com/questions/1811095/how-can-i-track-python-imports/1811097#1811097Comment by Ned Batchelder on How can I track python importsNed Batchelder2009-11-28T00:22:54Z2009-11-28T00:22:54ZIt 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#1810536Comment by Ned Batchelder on Memorable 32-bit value as a constantNed Batchelder2009-11-27T20:38:10Z2009-11-27T20:38:10ZI don't get it: how is 0xDEADBEEF a memory boundary?http://stackoverflow.com/questions/1809958/hide-stderr-output-in-unit-tests/1809962#1809962Comment by Ned Batchelder on Hide stderr output in unit testsNed Batchelder2009-11-27T18:12:21Z2009-11-27T18:12:21ZThe 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#1794228Comment by Ned Batchelder on How to make uniques in Django Models? And also index a column in Django.Ned Batchelder2009-11-25T14:47:09Z2009-11-25T14:47:09ZI 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-methodsComment by Ned Batchelder on How can a python base class tell whether a sub class has overriden its methods?Ned Batchelder2009-11-21T22:55:54Z2009-11-21T22:55:54ZI 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#1769147Comment by Ned Batchelder on Is there any regular expression engine which do Just-In-Time compiling?Ned Batchelder2009-11-20T19:21:34Z2009-11-20T19:21:34ZThe 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-pyparsingComment by Ned Batchelder on Find following tag with pyparsingNed Batchelder2009-11-20T16:53:05Z2009-11-20T16:53:05ZThat'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#1769794Comment by Ned Batchelder on Script to remove python comments/docstringsNed Batchelder2009-11-20T12:23:48Z2009-11-20T12:23:48ZAn interesting point!