User Devin Jeanpierre - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T18:28:32Zhttp://stackoverflow.com/feeds/user/18515http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/613183/python-sort-a-dictionary-by-value/613218#61321820Answer by Devin Jeanpierre for Python: Sort a dictionary by valueDevin Jeanpierre2009-03-05T00:59:34Z2009-10-26T06:24:29Z<p>It is not possible to sort a dict, only to get a representation of a dict that is sorted. Dicts are inherently orderless, but other types, such as lists and tuples, are not. So you need a sorted representation, which will be a list -- probably a list of tuples. For instance:</p>
<pre><code>import operator
x = {1: 2, 3: 4, 4:3, 2:1, 0:0}
sorted_x = sorted(x.items(), key=operator.itemgetter(1))
</code></pre>
<p>sorted_x will be a list of tuples sorted by the second element in each tuple. <code>dict(sorted_x) == x</code>.</p>
http://stackoverflow.com/questions/696047/re-raising-exceptions-with-a-different-type-and-message-preserving-existing-info/696095#6960951Answer by Devin Jeanpierre for Re-raising exceptions with a different type and message, preserving existing informationDevin Jeanpierre2009-03-30T05:40:08Z2009-08-30T15:10:25Z<p>You can use sys.exc_info() to get the traceback, and raise your new exception with said traceback (as the PEP mentions). If you want to preserve the old type and message, you can do so on the exception, but that's only useful if whatever catches your exception looks for it.</p>
<p>For example</p>
<pre><code>import sys
def failure():
try: 1/0
except ZeroDivisionError, e:
type, value, traceback = sys.exc_info()
raise ValueError, ("You did something wrong!", type, value), traceback
</code></pre>
<p>Of course, this is really not that useful. If it was, we wouldn't need that PEP. I'd not recommend doing it.</p>
http://stackoverflow.com/questions/1286548/python-lazy-attributes-that-dont-eval-on-hasattr/1291621#12916211Answer by Devin Jeanpierre for Python lazy attributes that don't eval on hasattr()Devin Jeanpierre2009-08-18T03:21:54Z2009-08-18T03:21:54Z<p>What nobody seems to have addressed so far is that perhaps the best thing to do is not to use <code>hasattr()</code>. Instead, go for EAFP (Easier to Ask Forgiveness than Permission).</p>
<pre><code>try:
x = foo.bar
except AttributeError:
# what went in your else-block
...
else:
# what went in your if hasattr(foo, "bar") block
...
</code></pre>
<p>This is obviously not a drop-in replacement, and you might have to move stuff around a bit, but it's possibly the "nicest" solution (subjectively, of course).</p>
http://stackoverflow.com/questions/898489/what-programming-languages-are-context-free/1291603#12916030Answer by Devin Jeanpierre for What programming languages are context-free?Devin Jeanpierre2009-08-18T03:14:29Z2009-08-18T03:14:29Z<p>To go for the most dramatic example of a non-context-free grammar, Perl's grammar is, as I understand it, <a href="http://perlmonks.org/?node%5Fid=663393" rel="nofollow">turing-complete</a>.</p>
http://stackoverflow.com/questions/924430/which-language-platform-doesnt-have-a-fixed-stack-size/924447#9244471Answer by Devin Jeanpierre for which language / platform doesn't have a fixed stack size?Devin Jeanpierre2009-05-29T04:58:20Z2009-05-29T04:58:20Z<p>If by "stack" you mean any old stack, most languages do-- Java has a <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/Stack.html" rel="nofollow">stack</a> class limited only by memory. More likely you mean the call stack, in which case the biggest example I can think of is <a href="http://www.stackless.com/" rel="nofollow">Stackless Python</a>, which, to my understanding, uses a pure-python memory-limited stack (like Java's) as the call stack for Python code, rather than using C's call stack.</p>
http://stackoverflow.com/questions/822363/proof-why-does-java-lang-string-hashcodes-implementation-match-its-documentat/822413#8224137Answer by Devin Jeanpierre for Proof: why does java.lang.String.hashCode()'s implementation match its documentation?Devin Jeanpierre2009-05-04T22:31:50Z2009-05-04T22:44:54Z<p>Proof by induction:</p>
<pre><code>T1(s) = 0 if |s| == 0, else s[|s|-1] + 31*T(s[0..|s|-1])
T2(s) = s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]
P(n) = for all strings s s.t. |s| = n, T1(s) = T2(s)
Let s be an arbitrary string, and n=|s|
Base case: n = 0
0 (additive identity, T2(s)) = 0 (T1(s))
P(0)
Suppose n > 0
T1(s) = s[n-1] + 31*T1(s[0:n-1])
T2(s) = s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1] = s[n-1] + 31*(s[0]*31^(n-2) + s[1]*31^(n-3) + ... + s[n-2]) = s[n-1] + 31*T2(s[0:n-1])
By the induction hypothesis, (P(n-1)), T1(s[0:n-1]) = T2(s[0:n-1]) so
s[n-1] + 31*T1(s[0..n-1]) = s[n-1] + T2(s[0:n-1])
P(n)
</code></pre>
<p>I think I have it, and a proof was requested.</p>
http://stackoverflow.com/questions/734970/python-reference-to-a-class-from-a-string/734995#7349950Answer by Devin Jeanpierre for Python: Reference to a class from a string?Devin Jeanpierre2009-04-09T16:36:52Z2009-04-09T16:36:52Z<p>Depending on where you get this string, any general method may be insecure (one such method is to simply use <code>eval(string)</code>. The best method is to define a dict mapping names to classes:</p>
<pre><code>class WrapperClass:
def display_var(self):
#FIXME: self.__class_name__.__name__ is a string
print d[self.__class__.__name__].the_var
class SomeSubClass(WrapperClass):
the_var = "abc"
class AnotherSubClass(WrapperClass):
the_var = "def"
d = {'WrapperClass': WrapperClass, 'SomeSubClass': SomeSubClass, 'AnotherSubClass': AnotherSubClass}
AnotherSubClass().display_var()
# prints 'def'
</code></pre>
http://stackoverflow.com/questions/733574/access-list-of-tuples/733582#73358211Answer by Devin Jeanpierre for Access list of tuplesDevin Jeanpierre2009-04-09T10:03:41Z2009-04-09T10:03:41Z<p>You can't do it without any iteration. You will either need iteration to convert it into a dict, at which point key access will become possible sans iteration, or you will need to iterate over it for each key access. Converting to a dict seems the better idea-- in the long run it is more efficient, but more importantly, it represents how you actually see this data structure-- as pairs of keys and values.</p>
<pre><code>>>> x = [('a_key', 'a value'), ('another_key', 'another value')]
>>> y = dict(x)
>>> y['a_key']
'a value'
>>> y['another_key']
'another value'
</code></pre>
http://stackoverflow.com/questions/717120/pythons-subprocess-popen-returns-the-same-stdout-even-though-it-shouldnt/717143#7171431Answer by Devin Jeanpierre for Python's subprocess.Popen returns the same stdout even though it shouldn'tDevin Jeanpierre2009-04-04T13:59:45Z2009-04-04T13:59:45Z<p>Nothing. That works fine, on my own tests (aside from your indentation error at the bottom). The problem is either in your exe. or elsewhere.</p>
<p>To clarify, I created a python program tfile.py</p>
<pre><code>cat > tfile.py
#!/usr/bin/env python
import random
print random.random()
</code></pre>
<p>And then altered tthe program to get rid of the indentation problem at the bottom, and to call tfile.py . It did give two different results.</p>
http://stackoverflow.com/questions/712791/json-and-simplejson-module-differences-in-python/712799#71279912Answer by Devin Jeanpierre for `json` and `simplejson` module differences in PythonDevin Jeanpierre2009-04-03T06:59:11Z2009-04-03T06:59:11Z<p><code>json</code> <a href="http://docs.python.org/whatsnew/2.6.html#the-json-module-javascript-object-notation" rel="nofollow">is</a> <code>simplejson</code>, added to the stdlib. Since <code>json</code> was only added in 2.6, <code>simplejson</code> has the advantage of working on more python versions (2.4+, rather than 2.6+). Also, <code>simplejson</code> is updated more frequently than Python is, so if you need the latest version for some reason, it's best to use <code>simplejson</code> itself.</p>
<p>A good practice, in my opinion, is to use it as a fallback.</p>
<pre><code>try: import json
except ImportError: import simplejson as json
</code></pre>
http://stackoverflow.com/questions/703600/help-with-regex-pattern/703634#7036340Answer by Devin Jeanpierre for Help with regex patternDevin Jeanpierre2009-04-01T00:44:46Z2009-04-01T00:44:46Z<p>It doesn't take much to realize that the regular expression should be equivalent to <code>^[1234567890qwertyuiopasdfghjklzxcvbnm\-._~]*$</code>. From there you can narrow it down trivially, replacing with <code>0-9</code>, <code>a-z</code>, etc. . You should learn the basics of regular expressions before using answers you get from others.</p>
http://stackoverflow.com/questions/703520/python-an-iteration-over-a-non-empty-list-with-no-if-clause-comes-up-empty-why/703534#70353412Answer by Devin Jeanpierre for Python: an iteration over a non-empty list with no if-clause comes up empty. Why?Devin Jeanpierre2009-03-31T23:59:40Z2009-03-31T23:59:40Z<p><code>odd_integers_up_to_length(el).next()</code> will raise StopIteration, which isn't caught there, but is caught for the generator expression within it, stopping it without ever yielding anything.</p>
<p>look at the first iteration, when the value is 'a':</p>
<pre><code>>>> odd_integers_up_to_length('a').next()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
StopIteration
</code></pre>
http://stackoverflow.com/questions/702760/how-do-i-generate-multi-word-terms-recursively/702788#7027883Answer by Devin Jeanpierre for How do I generate multi-word terms recursively?Devin Jeanpierre2009-03-31T20:01:14Z2009-03-31T20:01:14Z<p>Why are you doing this? You can instead just use a for loop and <a href="http://docs.python.org/library/itertools.html#itertools.combinations" rel="nofollow"><code>itertools.combinations()</code></a>.</p>
http://stackoverflow.com/questions/699285/convert-number-to-binary-string/699297#6992971Answer by Devin Jeanpierre for Convert number to binary stringDevin Jeanpierre2009-03-30T22:31:03Z2009-03-30T22:51:14Z<blockquote>
<p>Sometimes it doesn't work and complains about Odd-length string when you do 1234567890.</p>
</blockquote>
<p>Because it doesn't make sense. How do you fit 'AAB' in a space that takes either 2 or 4 digits? Each byte is two hex characters. When you have an odd number of hex characters, the desired result is ambiguous. Do you want it to be the equivalent of 0AAB or AAB0? If you know which one you want it to be equivalent to, just add that character to the right place before decoding.</p>
<p>i.e. <code>(('0' + foo) if len(foo) % 2 else foo).decode('hex')</code> where foo is a string of the form returned by <code>%x.</code></p>
http://stackoverflow.com/questions/699325/suppress-output-in-python-calls-to-executables/699342#6993421Answer by Devin Jeanpierre for Suppress output in Python calls to executablesDevin Jeanpierre2009-03-30T22:44:20Z2009-03-30T22:44:20Z<p>As the os.system() docs mention, use the <a href="http://docs.python.org/library/subprocess.html" rel="nofollow">subprocess</a> module, and, if you like, set stdout=open(os.devnull, 'w') (and perhaps the same for stderr) when you open the subprocess.</p>
http://stackoverflow.com/questions/698574/are-there-best-practices-or-tricks-for-indexing-monitoring-a-drive-for-files/698642#6986423Answer by Devin Jeanpierre for are there best practices or tricks for indexing/monitoring a drive for files?Devin Jeanpierre2009-03-30T19:13:28Z2009-03-30T19:13:28Z<blockquote>
<p>Ideally solutions would be not platform-dependant.</p>
</blockquote>
<p>Impossible. The Win32API has FindFirstChangeNotification, Linux has inotify (and others), Mac OS X has FSEvents, et cetera. This is stuff that's very low-level, and no OS does it the same as any other OS. If you want something cross-platform, you have to find an API with several backends that works on the platforms you want, but if there are any of these, I haven't yet found them. </p>
http://stackoverflow.com/questions/695505/parsing-template-schema-with-python-and-regular-expressions/695508#6955080Answer by Devin Jeanpierre for Parsing template schema with Python and Regular ExpressionsDevin Jeanpierre2009-03-29T22:27:23Z2009-03-29T22:27:23Z<p>It looks like it'd be easier to do with <code>re.Scanner</code> (sadly undocumented) than with a single regular expression.</p>
http://stackoverflow.com/questions/687863/how-to-get-upper-paths-from-a-single-path/687888#6878882Answer by Devin Jeanpierre for How to get upper paths from a single path?Devin Jeanpierre2009-03-26T23:04:59Z2009-03-26T23:22:58Z<pre><code>>>> def go_up(path, n):
... return os.path.abspath(os.path.join(*([path] + ['..']*n)))
>>> path = 'C:\\a\\b\\c\\d\\'
>>> go_up(path, 2)
'C:\\a\\b'
>>> go_up(path, 1)
'C:\\a\\b\\c'
>>> go_up(path, 0)
'C:\\a\\b\\c\\d'
</code></pre>
<p>Not being a regular user of <a href="http://docs.python.org/library/os.path.html" rel="nofollow">os.path</a>, I don't know if this is an appropriate/pythonic solution. I compared it to an alternate function, define as follows:</p>
<pre><code>def go_up_2(path, n):
for i in xrange(n):
path = os.path.split(path)[0]
return path
</code></pre>
<p>The first thing to note is that <code>go_up_2('C:\\a\\b\\', 1) != go_up_2('c:\\a\\b', 1)</code>, where it does with the original <code>go_up</code>. However, performance is significantly better, if that is an issue (probably not, but I was looking for some definitive way to say my own algorithm was better):</p>
<pre><code>import timeit
g1 = """import os.path
import ntpath
os.path = ntpath
def go_up(path, n):
return os.path.abspath(os.path.join(*([path] + ['..']*n)))"""
g2 = """import os.path
import ntpath
os.path = ntpath
def go_up(path, n):
for i in xrange(n-1):
path = os.path.split(path)[0]
return path"""
t1 = timeit.Timer("go_up('C:\\a\\b\\c\\d', 3)", setup=g1).timeit()
t2 = timeit.Timer("go_up('C:\\a\\b\\c\\d', 3)", setup=g2).timeit()
print t1
print t2
</code></pre>
<p>This outputs (on my machine):</p>
<pre><code>133.364659071
30.101334095
</code></pre>
<p>Not very useful information, but I was playing around, and figured it should be posted here anyway.</p>
http://stackoverflow.com/questions/686715/python-why-cant-i-modify-the-current-scope-within-a-function-using-locals/686730#6867306Answer by Devin Jeanpierre for Python: Why can't I modify the current scope within a function using locals()?Devin Jeanpierre2009-03-26T17:15:32Z2009-03-26T17:15:32Z<p>Why would it? It's designed to return a representation, and was never intended for editing the locals. It's not ever guaranteed to work as a tool for such, as the <a href="http://docs.python.org/library/functions.html#locals" rel="nofollow">documentation</a> warns.</p>
http://stackoverflow.com/questions/683493/cancelling-a-http-request-in-python/683545#6835451Answer by Devin Jeanpierre for Cancelling a HTTP request in pythonDevin Jeanpierre2009-03-25T21:28:29Z2009-03-25T21:28:29Z<p>The timeout parameter to <a href="http://docs.python.org/library/urllib2.html#urllib2.urlopen" rel="nofollow">urllib2.urlopen</a>, or <a href="http://docs.python.org/library/httplib.html#httplib.HTTPConnection" rel="nofollow">httplib</a>. The original urllib has no such convenient feature. You can also use an asynchronous HTTP client such as <a href="http://twistedmatrix.com/documents/8.1.0/api/twisted.web.client.html" rel="nofollow">twisted.web.client</a>, but that's probably not necessary.</p>
http://stackoverflow.com/questions/682504/what-is-a-clean-pythonic-way-to-have-multiple-constructors-in-python/682514#6825144Answer by Devin Jeanpierre for What is a clean, pythonic way to have multiple constructors in Python?Devin Jeanpierre2009-03-25T17:03:56Z2009-03-25T17:03:56Z<p>Use <code>num_holes=None</code> as a default, instead. Then check for whether <code>num_holes is None</code>, and if so, randomize. That's what I generally see, anyway.</p>
<p>More radically different construction methods may warrant a classmethod that returns an instance of <code>cls</code>.</p>
http://stackoverflow.com/questions/679731/min-heap-in-python/679742#6797424Answer by Devin Jeanpierre for min heap in pythonDevin Jeanpierre2009-03-25T00:01:28Z2009-03-25T00:01:28Z<p>Yes, there is a way. Define a wrapping class that implements your custom comparator, and use a list of those instead of a list of your actual objects. That's about the best there is while still using the heapq module, since it provides no key= or cmp= arguments like the sorting functions/methods do.</p>
<pre><code>def gen_wrapper(cmp):
class Wrapper(object):
def __init__(self, value): self.value = value
def __cmp__(self, obj): return cmp(self.value, obj.value)
return Wrapper
</code></pre>
http://stackoverflow.com/questions/678410/how-can-i-add-non-sequential-numbers-to-a-range/678429#67842910Answer by Devin Jeanpierre for How can I add non-sequential numbers to a range?Devin Jeanpierre2009-03-24T17:33:50Z2009-03-24T17:33:50Z<p>There are two ways to do it.</p>
<pre><code>>>> for x in range(5, 7) + [8, 9]: print x
...
5
6
8
9
>>> import itertools
>>> for x in itertools.chain(xrange(5, 7), [8, 9]): print x
...
5
6
8
9
</code></pre>
<p><a href="http://docs.python.org/library/itertools.html#itertools.chain" rel="nofollow">itertools.chain()</a> is by far superior, since it allows you to use arbitrary iterables, rather than just lists and lists. It's also more efficient, not requiring list copying. And it lets you use xrange, which you should when looping.</p>
http://stackoverflow.com/questions/678236/how-to-get-the-filename-without-the-extension-from-a-path-in-python/678247#6782474Answer by Devin Jeanpierre for How to get the filename without the extension from a path in Python?Devin Jeanpierre2009-03-24T16:45:02Z2009-03-24T16:45:02Z<blockquote>
<p>But even when I import os, I am not able to call it path.basename. Is it possible to call it as directly as basename?</p>
</blockquote>
<p><code>import os</code>, and then use <code>os.path.basename</code></p>
<p><code>import</code>ing <code>os</code> doesn't mean you can use <code>os.foo</code> without referring to <code>os</code>.</p>
http://stackoverflow.com/questions/675754/learning-python-3-0-on-ubuntu/675765#6757651Answer by Devin Jeanpierre for learning python 3.0 on ubuntuDevin Jeanpierre2009-03-24T00:44:07Z2009-03-24T00:44:07Z<p>The example used python 2.x , since <code>python</code> apparently referred to python2.x (for some x), not python3.0 (which is good, since most programs are for 2.x).</p>
<p>The second two examples used python 3.0 . You mixed tabs and spaces in your source, and should get rid of the tab characters (don't retype-- use regular-expression replacement). Python 3.0 is more sensitive about this than 2.x-- you can get the same behavior using <code>python -tt</code> for 2.x .</p>
http://stackoverflow.com/questions/674690/in-python-2-6-how-might-you-pass-a-list-object-to-a-method-which-expects-a-list/674706#6747068Answer by Devin Jeanpierre for In Python 2.6, How Might You Pass a List Object to a Method Which Expects A List of Arguments?Devin Jeanpierre2009-03-23T18:43:31Z2009-03-23T18:48:38Z<p><code>.format(*thelist)</code></p>
<p>It's part of the calling syntax in Python. I don't know the name either, and I'm not convinced it has one. See the <a href="http://docs.python.org/tutorial/controlflow.html#unpacking-argument-lists" rel="nofollow">tutorial</a>.</p>
<p>It doesn't just work on lists, though, it works for any iterable object.</p>
http://stackoverflow.com/questions/674519/how-can-i-convert-a-python-dictionary-to-a-list-of-tuples/674531#67453122Answer by Devin Jeanpierre for How can I convert a Python dictionary to a list of tuples?Devin Jeanpierre2009-03-23T18:01:38Z2009-03-23T18:37:45Z<pre><code>>>> d = { 'a': 1, 'b': 2, 'c': 3 }
>>> d.items()
[('a', 1), ('c', 3), ('b', 2)]
>>> [(v, k) for k, v in d.iteritems()]
[(1, 'a'), (3, 'c'), (2, 'b')]
</code></pre>
<p>It's not in the order you want, but dicts don't have any specific order anyway. Sort it or organize it as necessary.</p>
<p>See: <a href="http://docs.python.org/library/stdtypes.html#dict.items" rel="nofollow">items()</a>, <a href="http://docs.python.org/library/stdtypes.html#dict.iteritems" rel="nofollow">iteritems()</a></p>
http://stackoverflow.com/questions/674600/python-init-and-self-confusion/674621#6746210Answer by Devin Jeanpierre for Python, __init__ and self confusionDevin Jeanpierre2009-03-23T18:23:45Z2009-03-23T18:23:45Z<p>self is passed in automatically by the instancemethod wrapper on classes. This function isn't wrapped; it's not a method, it's just a function. It doesn't even make sense without being attached to a class, since it needs the self parameter.</p>
http://stackoverflow.com/questions/674304/pythons-use-of-new-and-init/674375#6743750Answer by Devin Jeanpierre for Python's use of __new__ and __init__ ?Devin Jeanpierre2009-03-23T17:23:37Z2009-03-23T17:23:37Z<blockquote>
<p>However, I'm a bit confused as to why <code>__init__</code> is always called after <code>__new__</code>.</p>
</blockquote>
<p>Not much of a reason other than that it just is done that way. <code>__new__</code> doesn't have the responsibility of initializing the class, some other method does (<code>__call__</code>, possibly-- I don't know for sure).</p>
<blockquote>
<p>I wasn't expecting this. Can anyone tell me why this is happening and how I implement this functionality otherwise? (apart from putting the implementation into the <code>__new__</code> which feels quite hacky).</p>
</blockquote>
<p>You could have <code>__init__</code> do nothing if it's already been initialized, or you could write a new metaclass with a new <code>__call__</code> that only calls <code>__init__</code> on new instances, and otherwise just returns <code>__new__(...)</code>.</p>
http://stackoverflow.com/questions/674229/python-list-index-question/674250#6742508Answer by Devin Jeanpierre for Python list.index questionDevin Jeanpierre2009-03-23T17:02:18Z2009-03-23T17:02:18Z<p>Because <code>-1</code> is itself a valid index. It could use a different value, such as <code>None</code>, but that wouldn't be useful, which <code>-1</code> can be in other situations (thus <code>str.find()</code>), and would amount simply to error-checking, which is exactly what exceptions are for.</p>
http://stackoverflow.com/questions/686715/python-why-cant-i-modify-the-current-scope-within-a-function-using-locals/686730#686730Comment by Devin Jeanpierre on Python: Why can't I modify the current scope within a function using locals()?Devin Jeanpierre2009-10-17T23:46:02Z2009-10-17T23:46:02ZThis is a fair complaint. For what it's worth, it works this way because Python speeds up local access in a way that makes this impossible, whereas the global namespace makes no such optimization (though that has been suggested, e.g. PEP 266). It is arguably a leaky abstraction that should go away. My personal preference would be to make globals() work the way locals() does now, rather than make locals() work like globals() does now. Regardless, my answer was more of a sneaky reference to the docs than a reference to intuition. It wouldn't do it because the docs don't say it should.http://stackoverflow.com/questions/1352885/remove-elements-as-you-traverse-a-list-in-python/1352907#1352907Comment by Devin Jeanpierre on Remove elements as you traverse a list in PythonDevin Jeanpierre2009-08-30T15:21:56Z2009-08-30T15:21:56Zwell, colors[:] = ... is only better if there are other references to worry about (for some reason, this rarely turns out to be the case for me). Still, the list comprehension is definitely the way to go.http://stackoverflow.com/questions/1352885/remove-elements-as-you-traverse-a-list-in-python/1353091#1353091Comment by Devin Jeanpierre on Remove elements as you traverse a list in PythonDevin Jeanpierre2009-08-30T15:19:47Z2009-08-30T15:19:47ZThe solution could be made to work, via: while 'green' in colors: colors.remove('green') . Of course, this is O(n**2), while the better solutions are O(n).http://stackoverflow.com/questions/1352885/remove-elements-as-you-traverse-a-list-in-python/1352908#1352908Comment by Devin Jeanpierre on Remove elements as you traverse a list in PythonDevin Jeanpierre2009-08-30T15:18:31Z2009-08-30T15:18:31ZThe only reason to call it more idiomatic is because the stdlib copy module documentation references it. Despite that, I would still use list(otherlist) for copies (or possibly copy.copy(otherthing))http://stackoverflow.com/questions/696047/re-raising-exceptions-with-a-different-type-and-message-preserving-existing-info/696095#696095Comment by Devin Jeanpierre on Re-raising exceptions with a different type and message, preserving existing informationDevin Jeanpierre2009-08-30T15:11:57Z2009-08-30T15:11:57ZI didn't store anything, I left traceback as a local variable that presumably falls out of scope. Yes, it is conceivable that it doesn't, but if you raise exceptions like that in the global scope rather than within functions, you've got bigger issues. If your complaint is only that it could be executed in a global scope, the proper solution is not to add irrelevant boilerplate that has to be explained and isn't relevant for 99% of uses, but to rewrite the solution so that no such thing is necessary while making it seem as if nothing is different-- as I have now done.http://stackoverflow.com/questions/924430/which-language-platform-doesnt-have-a-fixed-stack-size/924446#924446Comment by Devin Jeanpierre on which language / platform doesn't have a fixed stack size?Devin Jeanpierre2009-05-29T04:59:55Z2009-05-29T04:59:55ZA tail recursive function with the associated iterative optimization doesn't even go on the stack, as far as I know. If you define "stack" as related to calling functions, as an abstraction, that statement is true, but I wouldn't use that abstraction, since it's not particularly helpful. I didn't get the impression that that definition was normal, either.http://stackoverflow.com/questions/919906/list-of-filesComment by Devin Jeanpierre on List of filesDevin Jeanpierre2009-05-28T09:16:00Z2009-05-28T09:16:00ZI corrected your markup, so this should be just about exactly what was intended, but that doesn't help with what exactly the list is ([1 foo, 2 bar, ...] isn't valid Python, and doesn't make clear what precisely is in the list).http://stackoverflow.com/questions/919837/what-is-the-correct-term-for-a-fixed-sized-fifo-queue/919845#919845Comment by Devin Jeanpierre on What is the correct term for a fixed sized FIFO queue?Devin Jeanpierre2009-05-28T09:02:16Z2009-05-28T09:02:16ZGiving an answer and then editing it to say "this answer is entirely wrong" isn't all that helpful.http://stackoverflow.com/questions/749049/passing-a-multi-line-string-as-an-argument-to-a-script-in-windowsComment by Devin Jeanpierre on Passing a multi-line string as an argument to a script in WindowsDevin Jeanpierre2009-04-14T19:55:58Z2009-04-14T19:55:58ZYou shouldn't use the string module at all. That line should read <code>lines = multiline.splitlines()</code>http://stackoverflow.com/questions/749070/partial-list-unpack-in-python/749087#749087Comment by Devin Jeanpierre on partial list unpack in pythonDevin Jeanpierre2009-04-14T19:52:19Z2009-04-14T19:52:19ZIt should be a = values[0]http://stackoverflow.com/questions/748491/how-do-i-create-a-datetime-in-python-from-milliseconds/748515#748515Comment by Devin Jeanpierre on How do I create a datetime in Python from milliseconds?Devin Jeanpierre2009-04-14T17:21:53Z2009-04-14T17:21:53ZI'll wait until the other answer is corrected. Otherwise, yeah. A nice bonus is that I get a new badge.http://stackoverflow.com/questions/748491/how-do-i-create-a-datetime-in-python-from-milliseconds/748515#748515Comment by Devin Jeanpierre on How do I create a datetime in Python from milliseconds?Devin Jeanpierre2009-04-14T17:19:57Z2009-04-14T17:19:57ZI would rather delete the answer. This answer is a duplicate of another answer, which was accepted. The other answer only exists because of the mistake.http://stackoverflow.com/questions/748491/how-do-i-create-a-datetime-in-python-from-milliseconds/748515#748515Comment by Devin Jeanpierre on How do I create a datetime in Python from milliseconds?Devin Jeanpierre2009-04-14T17:18:22Z2009-04-14T17:18:22ZThat was indeed me being stupid. Sorry about that. I do of course know what milliseconds are-- I only have to be told once.http://stackoverflow.com/questions/744626/calling-unknown-python-functions/744647#744647Comment by Devin Jeanpierre on Calling unknown Python functionsDevin Jeanpierre2009-04-13T21:26:46Z2009-04-13T21:26:46Z"function pointers"? No such thing.http://stackoverflow.com/questions/734970/python-reference-to-a-class-from-a-string/734984#734984Comment by Devin Jeanpierre on Python: Reference to a class from a string?Devin Jeanpierre2009-04-09T16:39:55Z2009-04-09T16:39:55Z...seriously? You didn't know that?