User Thomas Wouters - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T23:37:35Zhttp://stackoverflow.com/feeds/user/17624http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1714236/go-command-line-arguments/1714495#17144955Answer by Thomas Wouters for Go command line argumentsThomas Wouters2009-11-11T11:07:12Z2009-11-11T11:07:12Z<p>Use the 'flag' package: <a href="http://golang.org/pkg/flag/" rel="nofollow">http://golang.org/pkg/flag/</a>. It doesn't do double-dash arguments, however. There isn't anything that exactly mimics GNU getopt behaviour (yet.)</p>
http://stackoverflow.com/questions/101268/hidden-features-of-python/101945#101945185Answer by Thomas Wouters for Hidden features of PythonThomas Wouters2008-09-19T13:47:15Z2009-10-21T18:44:04Z<p><strong>Chaining comparison operators</strong>:</p>
<pre><code>>>> x = 5
>>> 1 < x < 10
True
>>> 10 < x < 20
False
>>> x < 10 < x*10 < 100
True
>>> 10 > x <= 9
True
>>> 5 == x > 4
True
</code></pre>
<p>In case you're thinking it's doing, '1 < x', which comes out as True, and then comparing 'True < 10', which is also True, then no, that's really not what happens (see the last example.) It's really translating into <code>1 < x and x < 10</code>, and <code>x < 10 and 10 < x * 10 and x*10 < 100</code>, but with less typing and each term is only evaluated once.</p>
http://stackoverflow.com/questions/104983/what-is-thread-local-storage-in-python-and-why-do-i-need-it/105025#10502511Answer by Thomas Wouters for What is "thread local storage" in Python, and why do I need it?Thomas Wouters2008-09-19T19:59:40Z2009-09-11T01:16:40Z<p>In Python, everything is shared, except for function-local variables (because each function call gets its own set of locals, and threads are always separate function calls.) And even then, only the variables themselves (the names that refer to objects) are local to the function; objects themselves are always global, and anything can refer to them.
The <code>Thread</code> object for a particular thread is not a special object in this regard. If you store the <code>Thread</code> object somewhere all threads can access (like a global variable) then all threads can access that one <code>Thread</code> object. If you want to atomically modify <em>anything</em> that you didn't just create in this very same thread, and did not store anywhere another thread can get at it, you have to protect it by a lock. And all threads must of course share this very same lock, or it wouldn't be very effective.</p>
<p>If you want actual thread-local storage, that's where <code>threading.local</code> comes in. Attributes of <code>threading.local</code> are not shared between threads; each thread sees only the attributes it itself placed in there. If you're curious about its implementation, the source is in <code>_threading_local.py</code> in the standard library.</p>
http://stackoverflow.com/questions/246725/how-do-i-add-tab-completion-to-the-python-shell/247513#2475132Answer by Thomas Wouters for How do I add tab completion to the Python shell?Thomas Wouters2008-10-29T16:39:03Z2008-10-29T16:39:03Z<p>For the record, this is covered in the tutorial: <a href="http://docs.python.org/tutorial/interactive.html" rel="nofollow">http://docs.python.org/tutorial/interactive.html</a></p>
http://stackoverflow.com/questions/246137/can-i-call-and-set-the-python-gettext-module-in-a-library-and-a-module-using-it-a/246254#2462541Answer by Thomas Wouters for Can I call and set the Python gettext module in a library and a module using it at the same time ?Thomas Wouters2008-10-29T09:43:07Z2008-10-29T09:43:07Z<p>You can only gettext.install() once. In general it's useless for library work -- gettext.install() will only do the right thing if the module calling it is in charge of the whole program, since it will only provide you with one catalog to load from. Library code should do something akin to what Mailman does: have their own wrapper for gettext() that passes the right arguments for this module, then imports that as '_' in each module that wants to use it.</p>
http://stackoverflow.com/questions/236407/python-for-large-scale-development/236537#2365376Answer by Thomas Wouters for Python for large scale developmentThomas Wouters2008-10-25T15:05:10Z2008-10-25T15:05:10Z<p>Since nobody pointed out pychecker, pylint and similar tools, I will: pychecker and pylint are tools that can help you find incorrect assumptions (about function signatures, object attributes, etc.) They won't find everything that a compiler might find in a statically typed language -- but they can find problems that such compilers for such languages can't find, too.</p>
<p>Python (and any dynamically typed language) is fundamentally different in terms of the errors you're likely to cause and how you would detect and fix them. It has definite downsides as well as upsides, but many (including me) would argue that in Python's case, the ease of writing code (and the ease of making it structurally sound) and of modifying code <em>without</em> breaking API compatibility (adding new optional arguments, providing different objects that have the same set of methods and attributes) make it suitable just fine for large codebases.</p>
http://stackoverflow.com/questions/180606/how-do-i-convert-a-list-of-ascii-values-to-a-string-in-python/180615#18061519Answer by Thomas Wouters for How do I convert a list of ascii values to a string in python?Thomas Wouters2008-10-07T21:54:33Z2008-10-07T21:54:33Z<p>You are probably looking for 'chr()':</p>
<pre><code>>>> L = [104, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100]
>>> ''.join(chr(i) for i in L)
'hello, world'
</code></pre>
http://stackoverflow.com/questions/166431/clearing-a-list/166441#16644125Answer by Thomas Wouters for Clearing a listThomas Wouters2008-10-03T11:40:52Z2008-10-03T11:40:52Z<p>You are looking for:</p>
<pre><code>del L[:]
</code></pre>
http://stackoverflow.com/questions/165883/python-object-attributes-methodology-for-access/166098#16609814Answer by Thomas Wouters for Python object attributes - methodology for accessThomas Wouters2008-10-03T09:37:51Z2008-10-03T09:37:51Z<p>With regards to the single and double-leading underscores: both indicate the same concept of 'privateness'. That is to say, people will know the attribute (be it a method or a 'normal' data attribute or anything else) is not part of the public API of the object. People will know that to touch it directly is to invite disaster.</p>
<p>On top of that, the double-leading underscore attributes (but not the single-leading underscore attributes) are <em>name-mangled</em> to make accessing them <em>by accident</em> from subclasses or anywhere else outside the current class less likely. You can still access them, but not as trivially. For example:</p>
<pre><code>>>> class ClassA:
... def __init__(self):
... self._single = "Single"
... self.__double = "Double"
... def getSingle(self):
... return self._single
... def getDouble(self):
... return self.__double
...
>>> class ClassB(ClassA):
... def getSingle_B(self):
... return self._single
... def getDouble_B(self):
... return self.__double
...
>>> a = ClassA()
>>> b = ClassB()
</code></pre>
<p>You can now trivially access a._single and b._single and get the '_single' attribute created by ClassA:</p>
<pre><code>>>> a._single, b._single
('Single', 'Single')
>>> a.getSingle(), b.getSingle(), b.getSingle_B()
('Single', 'Single', 'Single')
</code></pre>
<p>But trying to access the '__double' attribute on the 'a' or 'b' instance directly won't work:</p>
<pre><code>>>> a.__double
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: ClassA instance has no attribute '__double'
>>> b.__double
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: ClassB instance has no attribute '__double'
</code></pre>
<p>And though methods defined in ClassA can get at it directly (when called on either instance):</p>
<pre><code>>>> a.getDouble(), b.getDouble()
('Double', 'Double')
</code></pre>
<p>Methods defined on ClassB can not:</p>
<pre><code>>>> b.getDouble_B()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<stdin>", line 5, in getDouble_B
AttributeError: ClassB instance has no attribute '_ClassB__double'
</code></pre>
<p>And right in that error you get a hint about what's happening. The __double attribute name, when accessed inside a class, is being name-mangled to include the name of the class that it is being accessed <em>in</em>. When ClassA tries to access 'self.__double', it actually turns -- at compiletime -- into an access of 'self._ClassA__double', and likewise for ClassB. (If a method in ClassB were to assign to __double, not included in the code for brevity, it would therefor not touch ClassA's __double but create a new attribute.) There is no other protection of this attribute, so you can still access it directly if you know the right name:</p>
<pre><code>>>> a._ClassA__double, b._ClassA__double
('Double', 'Double')
</code></pre>
<p><strong>So why is this a problem?</strong></p>
<p>Well, it's a problem any time you want to inherit and change the behaviour of any code dealing with this attribute. You either have to reimplement everything that touches this double-underscore attribute directly, or you have to guess at the class name and mangle the name manually. The problem gets worse when this double-underscore attribute is actually a method: overriding the method <em>or calling the method in a subclass</em> means doing the name-mangling manually, or reimplementing all the code that calls the method to not use the double-underscore name. Not to mention accessing the attribute dynamically, with getattr(): you will have to manually mangle there, too.</p>
<p>On the other hand, because the attribute is only trivially rewritten, it offers only superficial 'protection'. Any piece of code can still get at the attribute by manually mangling, although that will make <em>their</em> code dependant on the name of <em>your</em> class, and efforts on your side to refactor your code or rename your class (while still keeping the same user-visible name, a common practice in Python) would needlessly break their code. They can also 'trick' Python into doing the name-mangling for them by naming their class the same as yours: notice how there is no module name included in the mangled attribute name. And lastly, the double-underscore attribute is still visible in all attribute lists and all forms of introspection that don't take care to skip attributes starting with a (<em>single</em>) underscore.</p>
<p>So, <em>if</em> you use double-underscore names, use them exceedingly sparingly, as they can turn out quite inconvenient, and never use them for methods <em><code>or anything else a subclass may ever want to reimplement, override or access directly</code></em>. And realize that double-leading underscore name-mangling offers <em>no real protection</em>. In the end, using a single leading underscore wins you just as much and gives you less (potential, future) pain. Use a single leading underscore.</p>
http://stackoverflow.com/questions/162798/subclassing-a-class-with-private-members/162854#1628545Answer by Thomas Wouters for Subclassing a class with private membersThomas Wouters2008-10-02T15:06:26Z2008-10-02T15:06:26Z<p>Not conveniently, without further breaking encapsulation. The double-underscore attribute is name-mangled by prepending '_ClassName' for the class it is being accessed in. So, if you have a 'ContainerThing' class that has a '__value' attribute, the attribute is actually being stored as '<code>_ContainerThing__value</code>'. Changing the class name (or refactoring where the attribute is assigned to) would mean breaking all subclasses that try to access that attribute.</p>
<p>This is exactly why the double-underscore name-mangling (which is not really "private", just "inconvenient") is a bad idea to use. Just use a <em>single</em> leading underscore. Everyone will know not to touch your 'private' attribute and you will still be able to access it in subclasses and other situations where it's darned handy. The name-mangling of double-underscore attributes is useful only to avoid name-clashes for attributes that are truly specific to a particular class, which is extremely rare. It provides no extra 'security' since even the name-mangled attributes are trivially accessible.</p>
<p>For the record, '<code>__value</code>' and '<code>value</code>' (and '<code>_value</code>') are not the same name. The underscores are part of the name.</p>
http://stackoverflow.com/questions/162656/interface-to-versioned-dictionary/162707#1627072Answer by Thomas Wouters for Interface to versioned dictionaryThomas Wouters2008-10-02T14:46:31Z2008-10-02T14:46:31Z<p>Yes, provide a different API for getting different versions. Either a single methodcall for doing a retrieval of a particular item of a particular revision, or a methodcall for getting a 'view' of a particular revision, which you could then access like a normal dict, depending on whether such a 'view' would see much use. Or both, considering the dict-view solution would need some way to get a particular revision's item anyway:</p>
<pre><code>class RevisionView(object):
def __init__(self, db, revid):
self.db = db
self.revid = revid
def __getitem__(self, item):
self.db.getrev(item, self.revid)
</code></pre>
http://stackoverflow.com/questions/161367/library-for-converting-a-traceback-to-its-exception/161546#1615462Answer by Thomas Wouters for Library for converting a traceback to its exception?Thomas Wouters2008-10-02T09:48:57Z2008-10-02T09:48:57Z<p>Converting a traceback to the exception object wouldn't be too hard, given common exception classes (parse the last line for the exception class and the arguments given to it at instantiation.) The traceback object (the third argument returned by sys.exc_info()) is an entirely different matter, though. The traceback object actually contains the chain of frame objects that constituted the stack at the time of the exception. Including local variables, global variables, et cetera. It is impossible to recreate that just from the displayed traceback. </p>
<p>The best you could do would be to parse each 'File "X", line N, in Y:' line and create fake frame objects that are almost entirely empty. There would be very little value in it, as basically the only thing you would be able to do with it would be to print it. What are you trying to accomplish?</p>
http://stackoverflow.com/questions/160245/which-is-the-best-way-to-get-a-list-of-running-processes-in-unix-with-python/160284#1602841Answer by Thomas Wouters for Which is the best way to get a list of running processes in unix with python?Thomas Wouters2008-10-01T23:52:13Z2008-10-02T00:02:20Z<p>The cross-platform replacement for <code>commands</code> is <code>subprocess</code>. See the <a href="http://docs.python.org/lib/module-subprocess.html" rel="nofollow">subprocess module documentation</a>. The 'Replacing older modules' section includes <a href="http://docs.python.org/lib/node534.html" rel="nofollow">how to get output from a command</a>.</p>
<p>Of course, you still have to pass the right arguments to 'ps' for the platform you're on. Python can't help you with that, and though I've seen occasional mention of third-party libraries that try to do this, they usually only work on a few systems (like strictly SysV style, strictly BSD style, or just systems with /proc.)</p>
http://stackoverflow.com/questions/159720/what-is-the-naming-convention-in-python-for-variable-and-function-names/159778#1597781Answer by Thomas Wouters for What is the naming convention in Python for variable and function names?Thomas Wouters2008-10-01T21:12:41Z2008-10-01T21:12:41Z<p>There is <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP 8</a>, as other answers show, but PEP 8 is only the styleguide for the standard library, and it's only taken as gospel therein. One of the most frequent deviations of PEP 8 for other pieces of code is the variable naming, specifically for methods. There is no single predominate style, although considering the volume of code that uses mixedCase, if one were to make a strict census one would probably end up with a version of PEP 8 with mixedCase. There is little other deviation from PEP 8 that is quite as common.</p>
http://stackoverflow.com/questions/158546/best-way-to-store-and-use-a-large-text-file-in-python/159341#1593410Answer by Thomas Wouters for Best way to store and use a large text-file in pythonThomas Wouters2008-10-01T19:38:26Z2008-10-01T19:38:26Z<p>Depending on what your dict contains, you may be interested in the 'shelve' or 'anydbm' modules. They give you dict-like interfaces (just strings as keys and items for 'anydbm', and strings as keys and any python object as item for 'shelve') but the data is actually in a DBM file (gdbm, ndbm, dbhash, bsddb, depending on what's available on the platform.) You probably still want to share the actual database between classes as you are asking for, but it would avoid the parsing-the-textfile step as well as the keeping-it-all-in-memory bit.</p>
http://stackoverflow.com/questions/157424/python-2-5-dictionary-2-key-sort/157462#1574621Answer by Thomas Wouters for Python 2.5 dictionary 2 key sortThomas Wouters2008-10-01T13:00:26Z2008-10-01T13:06:39Z<p>The most pythonic way to do it would be to know a little more about the actual data -- specifically, the maximum value you can have -- and then do it like this:</p>
<pre><code>def sortkey((k, v)):
return (maxval - v, k)
items = thedict.items()
items.sort(key=sortkey)
</code></pre>
<p>but unless you already know the maximum value, searching for the maximum value means looping through the dict an extra time (with <code>max(thedict.itervalues())</code>), which may be expensive. Alternatively, a keyfunc version of S.Lott's solution:</p>
<pre><code>def sortkey((k, v)):
return (-v, k)
items = thedict.items()
items.sort(key=sortkey)
</code></pre>
<p>An alternative that doesn't care about the types would be a comparison function:</p>
<pre><code>def sortcmp((ak, av), (bk, bv)):
# compare values 'in reverse'
r = cmp(bv, av)
if not r:
# and then keys normally
r = cmp(ak, bk)
return r
items = thedict.items()
items.sort(cmp=sortcmp)
</code></pre>
<p>and this solution actually works for any type of key and value that you want to mix ascending and descending sorting with in the same key. If you value brevity you can write sortcmp as:</p>
<pre><code>def sortcmp((ak, av), (bk, bv)):
return cmp((bk, av), (ak, bv))
</code></pre>
http://stackoverflow.com/questions/157359/accurate-timestamping-in-python/157439#1574395Answer by Thomas Wouters for Accurate timestamping in PythonThomas Wouters2008-10-01T12:54:25Z2008-10-01T12:54:25Z<p>time.clock() only measures wallclock time on Windows. On other systems, time.clock() actually measures CPU-time. On those systems time.time() is more suitable for wallclock time, and it has as high a resolution as Python can manage -- which is as high as the OS can manage; usually using gettimeofday(3) (microsecond resolution) or ftime(3) (millisecond resolution.) Other OS restrictions actually make the real resolution a lot higher than that. datetime.datetime.now() uses time.time(), so time.time() directly won't be better.</p>
<p>For the record, if I use datetime.datetime.now() in a loop, I see about a 1/10000 second resolution. From looking at your data, you have much, much coarser resolution than that. I'm not sure if there's anything Python as such can do, although you may be able to convince the OS to do better through other means.</p>
<p>I seem to recall that on Windows, time.clock() is actually (slightly) more accurate than time.time(), but it measures wallclock since the first call to time.clock(), so you have to remember to 'initialize' it first.</p>
http://stackoverflow.com/questions/157039/most-pythonic-way-of-counting-matching-elements-in-something-iterable/157099#1570990Answer by Thomas Wouters for Most pythonic way of counting matching elements in something iterableThomas Wouters2008-10-01T10:56:46Z2008-10-01T10:56:46Z<p>Not as terse as you are looking for, but more efficient, it actually works with any iterable, not just iterables you can loop over multiple times, and you can expand the things to check for without complicating it further:</p>
<pre><code>r = xrange(1, 10)
counts = {
2: 0,
3: 0,
}
for v in r:
for q in counts:
if not v % q:
counts[q] += 1
# Or, more obscure:
#counts[q] += not v % q
for q in counts:
print "%s's: %s" % (q, counts[q])
</code></pre>
http://stackoverflow.com/questions/157018/emacs-and-python/157074#15707411Answer by Thomas Wouters for Emacs and PythonThomas Wouters2008-10-01T10:47:59Z2008-10-01T10:47:59Z<p>If you are using GNU Emacs 21 or before, or XEmacs, use python-mode.el. The GNU Emacs 22 python.el won't work on them. On GNU Emacs 22, python.el does work, and ties in better with GNU Emacs's own symbol parsing and completion, ElDoc, etc. I use XEmacs myself, so I don't use it, and I have heard people complain that it didn't work very nicely in the past, but there are updates available that fix some of the issues (for instance, on the emacswiki page you link), and you would hope some were integrated upstream by now. If I were the GNU Emacs kind, I would use python.el until I found specific reasons not to.</p>
<p>The python-mode.el's single biggest problem as far as I've seen is that it doesn't quite understand triple-quoted strings. It treats them as single-quoted, meaning that a single quote inside a triple-quoted string will throw off the syntax highlighting: it'll think the string has ended there. You may also need to change your auto-mode-alist to turn on python-mode for .py files; I don't remember if that's still the case but my init.el has been setting auto-mode-alist for many years now.</p>
<p>As for other addons, nothing I would consider 'essential'. XEmacs's func-menu is sometimes useful, it gives you a little function/class browser menu for the current file. I don't remember if GNU Emacs has anything similar. I have a rst-mode for reStructuredText editing, as that's used in some projects. Tying into whatever VC you use, if any, may be useful to you, but there is builtin support for most and easily downloaded .el files for the others.</p>
http://stackoverflow.com/questions/156873/customized-command-line-parsing-in-python/156901#1569010Answer by Thomas Wouters for Customized command line parsing in PythonThomas Wouters2008-10-01T09:50:33Z2008-10-01T09:50:33Z<p>Without fairly intensive surgery on optparse or getopt, I don't believe you can sensibly make them parse your format. You can easily parse your own format, though, or translate it into something optparse could handle:</p>
<pre><code>parser = optparse.OptionParser()
parser.add_option("--ARG1", dest="arg1", help="....")
parser.add_option(...)
...
newargs = sys.argv[:1]
for idx, arg in enumerate(sys.argv[1:])
parts = arg.split('=', 1)
if len(parts) < 2:
# End of options, don't translate the rest.
newargs.extend(sys.argv[idx+1:])
break
argname, argvalue = parts
newargs.extend(["--%s" % argname, argvalue])
parser.parse_args(newargs)
</code></pre>
http://stackoverflow.com/questions/154504/is-timsort-general-purpose-or-python-specific/154812#15481213Answer by Thomas Wouters for Is timsort general-purpose or Python-specific?Thomas Wouters2008-09-30T20:14:57Z2008-09-30T21:15:53Z<p>The algorithm is pretty generic, but the benefits are rather Python-specific. Unlike most sorting routines, what Python's list.sort (which is what uses timsort) cares about is avoiding unnecessary comparisons, because generally comparisons are a <em>lot</em> more expensive than swapping items (which is always just a set of pointer copies) or even allocating some extra memory (because it's always just an array of pointers, and the overhead is small compared to the average overhead in any Python operation.)</p>
<p>If you're under similar constraints, then it may be suitable. I've yet to see any other case where comparisons are really that expensive, though :-)</p>
http://stackoverflow.com/questions/153227/extension-functions-and-help/153284#1532842Answer by Thomas Wouters for Extension functions and 'help'Thomas Wouters2008-09-30T14:26:30Z2008-09-30T14:26:30Z<p>You cannot. The inspect module, which is what 'pydoc' and 'help()' use, has no way of figuring out what the exact signature of a C function is. The best you can do is what the builtin functions do: include the signature in the first line of the docstring:</p>
<pre><code>>>> help(range)
Help on built-in function range in module __builtin__:
range(...)
range([start,] stop[, step]) -> list of integers
...
</code></pre>
<p>The reason random.shuffle's docstring looks "correct" is that it isn't a C function. It's a function written in Python.</p>
http://stackoverflow.com/questions/150743/what-exceptions-might-a-python-function-raise/150774#1507745Answer by Thomas Wouters for What exceptions might a Python function raise?Thomas Wouters2008-09-29T21:30:29Z2008-09-29T21:30:29Z<p>The only way to tell what exceptions something can raise is by looking at the documentation. The fact that the int() documentation doesn't say it may raise ValueError is a bug in the documentation, but easily explained by ValueError being exactly for that purpose, and that being something "everybody knows".</p>
<p>To belabour the point, though, documentation is the only way to tell what exceptions you should care about; in fact, any function can potentially raise any exception, even if it's just because signals may arrive and signal handlers may raise exceptions. You should not anticipate or handle those errors, however; you should just handle the errors you expect.</p>
http://stackoverflow.com/questions/141545/overloading-init-in-python/141777#14177714Answer by Thomas Wouters for overloading __init__ in pythonThomas Wouters2008-09-26T20:30:15Z2008-09-26T20:42:57Z<p>A much neater way to get 'alternate constructors' is to use classmethods. For instance:</p>
<pre><code>>>> class MyData:
... def __init__(self, data):
... "Initialize MyData from a sequence"
... self.data = data
...
... @classmethod
... def fromfilename(cls, filename):
... "Initialize MyData from a file"
... data = open(filename).readlines()
... return cls(data)
...
... @classmethod
... def fromdict(cls, datadict):
... "Initialize MyData from a dict's items"
... return cls(datadict.items())
...
>>> MyData([1, 2, 3]).data
[1, 2, 3]
>>> MyData.fromfilename("/tmp/foobar").data
['foo\n', 'bar\n', 'baz\n']
>>> MyData.fromdict({"spam": "ham"}).data
[('spam', 'ham')]
</code></pre>
<p>The reason it's neater is that there is no doubt about what type is expected, and you aren't forced to guess at what the caller intended for you to do with the datatype it gave you. The problem with <code>isinstance(x, basestring)</code> is that there is no way for the caller to tell you, for instance, that even though the type is not a basestring, you should treat it as a string (and not another sequence.) And perhaps the caller would like to use the same type for different purposes, sometimes as a single item, and sometimes as a sequence of items. Being explicit takes all doubt away and leads to more robust and clearer code.</p>
http://stackoverflow.com/questions/141802/how-do-i-dump-an-entire-python-process-for-later-debugging-inspection/141826#1418263Answer by Thomas Wouters for How do I dump an entire Python process for later debugging inspection?Thomas Wouters2008-09-26T20:38:17Z2008-09-26T20:38:17Z<p>There is no builtin way other than aborting (with os.abort(), causing the coredump if resource limits allow it) -- although you can certainly build your own 'dump' function that dumps relevant information about the data you care about. There are no ready-made tools for it.</p>
<p>As for handling the corefile of a Python process, the <a href="http://svn.python.org/projects/python/trunk/Misc/gdbinit" rel="nofollow">Python source has a gdbinit file</a> that contains useful macros. It's still a lot more painful than somehow getting into the process itself (with pdb or the interactive interpreter) but it makes life a little easier.</p>
http://stackoverflow.com/questions/141642/what-limitations-have-closures-in-python-compared-to-language-x-closures/141710#14171013Answer by Thomas Wouters for What limitations have closures in Python compared to language X closures?Thomas Wouters2008-09-26T20:19:27Z2008-09-26T20:19:27Z<p>The most important limitation, currently, is that you cannot assign to an outer-scope variable. In other words, closures are read-only:</p>
<pre><code>>>> def outer(x):
... def inner_reads():
... # Will return outer's 'x'.
... return x
... def inner_writes(y):
... # Will assign to a local 'x', not the outer 'x'
... x = y
... def inner_error(y):
... # Will produce an error: 'x' is local because of the assignment,
... # but we use it before it is assigned to.
... tmp = x
... x = y
... return tmp
... return inner_reads, inner_writes, inner_error
...
>>> inner_reads, inner_writes, inner_error = outer(5)
>>> inner_reads()
5
>>> inner_writes(10)
>>> inner_reads()
5
>>> inner_error(10)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<stdin>", line 11, in inner_error
UnboundLocalError: local variable 'x' referenced before assignment
</code></pre>
<p>A name that gets assigned to in a local scope (a function) is always local, unless declared otherwise. While there is the 'global' declaration to declare a variable global even when it is assigned to, there is no such declaration for enclosed variables -- yet. In Python 3.0, there is (will be) the 'nonlocal' declaration that does just that.</p>
<p>You can work around this limitation in the mean time by using a mutable container type:</p>
<pre><code>>>> def outer(x):
... x = [x]
... def inner_reads():
... # Will return outer's x's first (and only) element.
... return x[0]
... def inner_writes(y):
... # Will look up outer's x, then mutate it.
... x[0] = y
... def inner_error(y):
... # Will now work, because 'x' is not assigned to, just referenced.
... tmp = x[0]
... x[0] = y
... return tmp
... return inner_reads, inner_writes, inner_error
...
>>> inner_reads, inner_writes, inner_error = outer(5)
>>> inner_reads()
5
>>> inner_writes(10)
>>> inner_reads()
10
>>> inner_error(15)
10
>>> inner_reads()
15
</code></pre>
http://stackoverflow.com/questions/141291/how-to-list-only-top-level-directories-in-python/141327#1413277Answer by Thomas Wouters for How to list only top level directories in Python?Thomas Wouters2008-09-26T19:06:57Z2008-09-26T19:06:57Z<p>Filter the result using os.path.isdir() (and use os.path.join() to get the real path):</p>
<pre><code>>>> [ name for name in os.listdir(thedir) if os.path.isdir(os.path.join(thedir, name)) ]
['ctypes', 'distutils', 'encodings', 'lib-tk', 'config', 'idlelib', 'xml', 'bsddb', 'hotshot', 'logging', 'doc', 'test', 'compiler', 'curses', 'site-packages', 'email', 'sqlite3', 'lib-dynload', 'wsgiref', 'plat-linux2', 'plat-mac']
</code></pre>
http://stackoverflow.com/questions/140182/regular-expressions-but-for-writing-in-the-match/140208#1402081Answer by Thomas Wouters for Regular expressions but for writing in the matchThomas Wouters2008-09-26T15:26:18Z2008-09-26T15:26:18Z<p>Of course. See the 'sub' and 'subn' methods of compiled regular expressions, or the 're.sub' and 're.subn' functions. You can either make it replace the matches with a string argument you give, or you can pass a callable (such as a function) which will be called to supply the replacement. See <a href="http://docs.python.org/lib/module-re.html" rel="nofollow">http://docs.python.org/lib/module-re.html</a></p>
http://stackoverflow.com/questions/139180/listing-all-functions-in-a-python-module/139198#1391983Answer by Thomas Wouters for listing all functions in a python moduleThomas Wouters2008-09-26T12:41:04Z2008-09-26T12:41:04Z<p>The inspect module. Also see the 'pydoc' module, the 'help()' function in the interactive interpreter and the 'pydoc' command-line tool which generate the documentation you are after. You can just give them the class you wish to see the documentation of. They can also generate, for instance, HTML output and write it to disk.</p>
http://stackoverflow.com/questions/138521/is-it-feasible-to-compile-python-to-machine-code/138605#1386051Answer by Thomas Wouters for Is it feasible to compile Python to machine code?Thomas Wouters2008-09-26T10:14:09Z2008-09-26T10:14:09Z<p>The answer is "Yes, it is possible". You could take Python code and attempt to compile it into the equivalent C code using the CPython API. In fact, there used to be a Python2C project that did just that, but I haven't heard about it in many years (back in the Python 1.5 days is when I last saw it.)</p>
<p>You could attempt to translate the Python code into native C as much as possible, and fall back to the CPython API when you need actual Python features. I've been toying with that idea myself the last month or two. It is, however, an awful lot of work, and an enormous amount of Python features are very hard to translate into C: nested functions, generators, anything but simple classes with simple methods, anything involving modifying module globals from outside the module, etc, etc.</p>
http://stackoverflow.com/questions/1714211/questions-about-the-new-released-language-go/1714243#1714243Comment by Thomas Wouters on Questions about the new released language GoThomas Wouters2009-11-11T11:06:16Z2009-11-11T11:06:16ZThere's a lot more to Go than just that.http://stackoverflow.com/questions/243865/how-do-i-merge-two-python-iterators/243902#243902Comment by Thomas Wouters on How do I merge two python iterators?Thomas Wouters2008-10-28T16:40:57Z2008-10-28T16:40:57ZIt will still only work if one of the arguments is a finite iterable. If they are both infinite, zip() won't work. Use itertools.izip() instead.http://stackoverflow.com/questions/192261/how-do-i-log-an-exception-at-warning-or-info-level-with-trace-back-using-the-pyt/192352#192352Comment by Thomas Wouters on How do I log an exception at warning- or info-level with trace back using the python logging framework?Thomas Wouters2008-10-10T17:27:03Z2008-10-10T17:27:03ZThat won't log the traceback, however; use logging.exception().http://stackoverflow.com/questions/165883/python-object-attributes-methodology-for-access/165901#165901Comment by Thomas Wouters on Python object attributes - methodology for accessThomas Wouters2008-10-03T09:59:12Z2008-10-03T09:59:12Z<b>getattr</b> and <b>setattr</b> is actually the least convenient way of doing it. properties and <b>slots</b> are generally much more preferable.http://stackoverflow.com/questions/161367/library-for-converting-a-traceback-to-its-exception/161546#161546Comment by Thomas Wouters on Library for converting a traceback to its exception?Thomas Wouters2008-10-02T21:57:01Z2008-10-02T21:57:01ZYes, sorry, I forgot to mention that I haven't seen anything like it, and since there is such little point to it I doubt it exists :-)http://stackoverflow.com/questions/164137/how-do-i-deploy-a-python-desktop-application/164272#164272Comment by Thomas Wouters on How do I deploy a Python desktop application?Thomas Wouters2008-10-02T20:11:33Z2008-10-02T20:11:33ZPython's bytecode is very high level and trivially decompileable; distributing .pyc files is really not any form of protection you want to rely on.http://stackoverflow.com/questions/164129/what-do-you-think-of-the-new-functionality-in-python-2-6/164288#164288Comment by Thomas Wouters on What do you think of the new functionality in Python 2.6?Thomas Wouters2008-10-02T20:10:11Z2008-10-02T20:10:11Z'with' is not new in 2.6, it's just available without a <b>future</b> import now.http://stackoverflow.com/questions/163009/urllib2-file-name/163095#163095Comment by Thomas Wouters on urllib2 file nameThomas Wouters2008-10-02T15:52:50Z2008-10-02T15:52:50ZUse posixpath.basename() instead of manually splitting on '/'.http://stackoverflow.com/questions/160245/which-is-the-best-way-to-get-a-list-of-running-processes-in-unix-with-python/160271#160271Comment by Thomas Wouters on Which is the best way to get a list of running processes in unix with python?Thomas Wouters2008-10-01T23:52:44Z2008-10-01T23:52:44Zos.system() doesn't give you the output, the output is just printed to the screen. os.system() returns the process exit status, which you'll see as a trailing '0' in the output.http://stackoverflow.com/questions/154504/is-timsort-general-purpose-or-python-specific/154812#154812Comment by Thomas Wouters on Is timsort general-purpose or Python-specific?Thomas Wouters2008-10-01T13:34:40Z2008-10-01T13:34:40ZThat is a good observation, and indeed probably the main reason you won't see timsort or anything close to it in the wild.http://stackoverflow.com/questions/156504/how-to-skip-the-docstring-using-regex/156513#156513Comment by Thomas Wouters on How to skip the docstring using regexThomas Wouters2008-10-01T08:32:12Z2008-10-01T08:32:12ZDon't forget that a docstring is not just a triple-quoted string literal. A docstring is <i>any</i> string literal that is the first expression in a module, class or function. It can use """, ''', ", ', or even r""", r''', r', r", u""", u''', u", u', ur""", ur''', ur" or ur' for the opening quotes.http://stackoverflow.com/questions/156504/how-to-skip-the-docstring-using-regexComment by Thomas Wouters on How to skip the docstring using regexThomas Wouters2008-10-01T08:29:25Z2008-10-01T08:29:25ZNo, PEP8 doesn't recommend that, and it would in fact make the docstrings not docstrings. Docstrings are only docstrings when they are the first expression in a module, class or function. PEP8 says imports have to come immediately after comments and docstrings.http://stackoverflow.com/questions/154504/is-timsort-general-purpose-or-python-specificComment by Thomas Wouters on Is timsort general-purpose or Python-specific?Thomas Wouters2008-09-30T21:17:03Z2008-09-30T21:17:03Z'timsort' is really very specific, although it won't mean much to you unless you actually know what timsort is.http://stackoverflow.com/questions/153227/extension-functions-and-help/153284#153284Comment by Thomas Wouters on Extension functions and 'help'Thomas Wouters2008-09-30T14:32:42Z2008-09-30T14:32:42ZBecause that's what Python thinks the object is -- because that's what it is. See 'help(list.append)' and you'll see the same thing.http://stackoverflow.com/questions/152580/whats-the-canonical-way-to-check-for-type-in-python/152596#152596Comment by Thomas Wouters on What's the canonical way to check for type in python?Thomas Wouters2008-09-30T12:22:23Z2008-09-30T12:22:23Zstr.__subclasses__() only returns the direct subclasses of str, and does not do the same thing as issubclass() or isinstance(). (To do that, you would have to recursively call .__subclasses__().