User Thomas Vander Stichele - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T14:02:50Z http://stackoverflow.com/feeds/user/2900 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1664921/debian-dropped-support-for-la-files-how-do-i-build-now/1670801#1670801 1 Answer by Thomas Vander Stichele for Debian dropped support for .la files; how do I build now? Thomas Vander Stichele 2009-11-03T23:20:28Z 2009-11-03T23:20:28Z <p>You shouldn't be needing the .la files. You didn't paste the important parts of the command output - what step is trying to link to the libogg.la file. My guess is libtool, and my guess is that after upgrading you're running make in your source dir or vcs checkout, without rerunning autogen.sh or configure as appropriate.</p> <p>In short, you don't give enough info to help you further (How did you get fuppes ? How did you build it ? How did you try to build it after upgrading ?). Most likely either you forgot to regenerate build files, or some other linker step is pulling in a .la file and needs to be regenerated (for example, a pkg-config file).</p> http://stackoverflow.com/questions/1670735/python-chat-client-lib/1670779#1670779 5 Answer by Thomas Vander Stichele for python chat client lib Thomas Vander Stichele 2009-11-03T23:17:16Z 2009-11-03T23:17:16Z <p>For a python app doing this, I wouldn't use threads. I would use a framework like <a href="http://twistedmatrix.com" rel="nofollow" title="Twisted">Twisted</a>.</p> <p>The docs have examples; <a href="http://twistedmatrix.com/projects/core/documentation/examples/#auto1" rel="nofollow">here's a chat example</a>.</p> http://stackoverflow.com/questions/134626/which-is-more-preferable-to-use-in-python-lambda-functions-or-nested-functions/138625#138625 5 Answer by Thomas Vander Stichele for Which is more preferable to use in Python: lambda functions or nested functions ('def') ? Thomas Vander Stichele 2008-09-26T10:20:43Z 2009-10-20T09:39:56Z <p>Practically speaking, to me there are two differences:</p> <p>The first is about what they do and what they return:</p> <ul> <li><p>def is a keyword that doesn't return anything and creates a 'name' in the local namespace.</p></li> <li><p>lambda is a keyword that returns a function object and does not create a 'name' in the local namespace.</p></li> </ul> <p>Hence, if you need to call a function that takes a function object, the only way to do that in one line of python code is with a lambda. There's no equivalent with def.</p> <p>In some frameworks this is actually quite common; for example, I use <a href="http://twistedmatrix.com/" rel="nofollow">Twisted</a> a lot, and so doing something like</p> <pre><code>d.addCallback(lambda result: setattr(self, _someVariable, result)) </code></pre> <p>is quite common, and more concise with lambdas.</p> <p>The second difference is about what the actual function is allowed to do.</p> <ul> <li>A function defined with 'def' can contain any python code</li> <li>A function defined with 'lambda' has to evaluate to an expression, and can thus not contain statements like print, import, raise, ... </li> </ul> <p>For example,</p> <pre><code>def p(x): print x </code></pre> <p>works as expected, while</p> <pre><code>lambda x: print x </code></pre> <p>is a SyntaxError.</p> <p>Of course, there are workarounds - substitute <code>print</code> with <code>sys.stdout.write</code>, or <code>import</code> with <code>__import__</code>. But usually you're better off going with a function in that case.</p> http://stackoverflow.com/questions/1044651/how-to-programatically-get-the-latest-commit-date-on-a-cvs-checkout 0 How to programatically get the latest commit date on a CVS checkout Thomas Vander Stichele 2009-06-25T15:39:48Z 2009-06-25T17:36:21Z <p>For a script I'm working on to implement bisection using CVS, I want to figure out what the 'timestamp' is of the current checkout. In other words, if I'm on a branch/tag, I want to know the last timestamp something got commited to that branch/tag. If I'm on head, I want to know the last timestamp on head.</p> <p>I know this is not 100% guaranteed, since cvs checkouts can have different files at different timestamps/revisions/..., but a correct-in-most-cases solution is fine by me.</p> <p>Naively, I thought that</p> <pre><code>cvs log -N | grep ^date: | sort | tail -n 1 | cut -d\; -f1 </code></pre> <p>was going to do it, but it turns out it goes through the whole commit history, for all branches/tags.</p> http://stackoverflow.com/questions/809818/how-to-work-with-threads-in-pygtk/810854#810854 3 Answer by Thomas Vander Stichele for How to work with threads in pygtk Thomas Vander Stichele 2009-05-01T10:03:37Z 2009-05-01T10:03:37Z <p>Your question is a bit vague, and without a reference to your actual code it's hard to speculate what you're doing wrong.</p> <p>So I'll give you some pointers to read, then speculate wildly based on experience.</p> <p>First of all, you seem to think that you can only keep the GUI responsive by using threads. This is not true. You can also write your code asynchronously, and do everything in a single-threaded application. <a href="http://twistedmatrix.com" rel="nofollow" title="Twisted">Twisted</a> is built on this programming model. I recently <a href="http://thomas.apestaart.org/log/?p=851" rel="nofollow">made a blog post</a> that explains how I created an asynchronous task interface, and example runners both for CLI and GTK+. You can look at those examples to see how tasks can be implemented asynchronously, and the UI still gets updated.</p> <p>Second, if you prefer to use threads for some reason, you will need to understand the GTK+ threading model a little.</p> <p>You should start by reading <a href="http://faq.pygtk.org/index.py?file=faq20.006.htp&amp;req=show" rel="nofollow">The PyGTK FAQ entry on the subject</a>, and you might find <a href="http://unpythonic.blogspot.com/2007/08/using-threads-in-pygtk.html" rel="nofollow">this blog post</a> easy to understand too.</p> <p>Now, on to speculation. I am guessing that you are trying to update your GTK UI from the thread, and not handling the locking properly. If this is the case, you are better off for now deferring all your UI updates you want to do from threads to the main thread by using gobject.idle_add() This way, all UI calls will be made from the main thread. It is an easier mental model to follow in your programming.</p> <p>Once you feel you really understand the threading and locking models, you could consider updating the UI from your threads, but it's easy to miss a threads_enter()/threads_leave()</p> http://stackoverflow.com/questions/24931/how-to-capture-python-interpreters-and-or-cmd-exes-output-from-a-python-script/29169#29169 2 Answer by Thomas Vander Stichele for How to capture Python interpreter's and/or CMD.EXE's output from a Python script? Thomas Vander Stichele 2008-08-26T23:16:16Z 2009-04-29T18:24:23Z <p>Actually, you definitely can, and it's beautiful, ugly, and crazy at the same time!</p> <p>You can replace sys.stdout and sys.stderr with StringIO objects that collect the output.</p> <p>Here's an example, save it as evil.py:</p> <pre><code>import sys import StringIO s = StringIO.StringIO() sys.stdout = s print "hey, this isn't going to stdout at all!" print "where is it ?" sys.stderr.write('It actually went to a StringIO object, I will show you now:\n') sys.stderr.write(s.getvalue()) </code></pre> <p>When you run this program, you will see that:</p> <ul> <li>nothing went to stdout (where print usually prints to)</li> <li>the first string that gets written to stderr is the one starting with 'It'</li> <li>the next two lines are the ones that were collected in the StringIO object</li> </ul> <p>Replacing sys.stdout/err like this is an application of what's called monkeypatching. Opinions may vary whether or not this is 'supported', and it is definitely an ugly hack, but it has saved my bacon when trying to wrap around external stuff once or twice.</p> <p>Tested on Linux, not on Windows, but it should work just as well. Let me know if it works on Windows!</p> http://stackoverflow.com/questions/749170/how-to-generate-examples-of-a-gettext-plural-forms-expression-in-python/754246#754246 1 Answer by Thomas Vander Stichele for How to generate examples of a gettext plural forms expression? In Python? Thomas Vander Stichele 2009-04-16T00:01:35Z 2009-04-16T00:01:35Z <p>Given that it's late, I'll bite.</p> <p>The following solution is hacky, and relies on converting your plural form to python code that can be evaluated (basically converting the x ? y : z statements to the python x and y or z equivalent, and changing &amp;&amp;/|| to and/or)</p> <p>I'm not sure if your plural form rule is a contrived example, and I don't understand what you mean with your first text field, but I'm sure you'll get where I'm going with my example solution:</p> <pre><code># -*- Mode: Python -*- # vi:si:et:sw=4:sts=4:ts=4 p = "Plural-Forms: nplurals=3; plural=n%10==1 &amp;&amp; n%100!=11 ? 0 : n%10&gt;=2 &amp;&amp; n%10&lt;=4 &amp;&amp; (n%100&lt;10 || n%100&gt;=20) ? 1 : 2;\n" # extract rule import re matcher = re.compile('plural=(.*);') match = matcher.search(p) rule = match.expand("\\1") # convert rule to python syntax oldrule = None while oldrule != rule: oldrule = rule rule = re.sub('(.*)\?(.*):(.*)', r'(\1) and (\2) or (\3)', oldrule) rule = re.sub('&amp;&amp;', 'and', rule) rule = re.sub('\|\|', 'or', rule) for n in range(40): code = "n = %d" % n print n, eval(rule) </code></pre> http://stackoverflow.com/questions/753749/need-to-build-or-otherwise-obtain-python-devel-2-3-and-add-to-ldlibrarypath/754180#754180 1 Answer by Thomas Vander Stichele for Need to build (or otherwise obtain) python-devel 2.3 and add to LD_LIBRARY_PATH Thomas Vander Stichele 2009-04-15T23:37:08Z 2009-04-15T23:37:08Z <p>You can use the python RPM's linked to from the python home page ChristopheD mentioned. You can extract the RPM's using cpio, as they are just specialized cpio archives. Your method of extracting them to your home directory and setting LD_LIBRARY_PATH and PATH should work; I use this all the time for hand-built newer versions of projects I also have installed.</p> <p>Don't focus on the -devel package though; you need the main package. You can unpack the -devel one as well, but the only thing you'll actually use from it is the libpython2.3.so symlink that points to the actual library, and you can just as well create this by hand.</p> <p>Whether this is the right approach depends on what you are trying to do. If all you're trying to do is to get this one application to run for you personally, then this hack sounds fine.</p> <p>If you wanted to actually distribute something to other people for running this application, and you have no way of fixing the actual application, you should consider building an rpm of the older python version that doesn't conflict with the system-installed one. </p> http://stackoverflow.com/questions/717120/pythons-subprocess-popen-returns-the-same-stdout-even-though-it-shouldnt/717160#717160 0 Answer by Thomas Vander Stichele for Python's subprocess.Popen returns the same stdout even though it shouldn't Thomas Vander Stichele 2009-04-04T14:10:51Z 2009-04-04T14:10:51Z <p>Your code is not executable as is so it's hard to help you out much. Consider fixing indentation and syntax and making it self-contained, so that we can give it a try.</p> <p>On Linux, it seems to work fine according to Devin Jeanpierre.</p> http://stackoverflow.com/questions/569096/python-subversion-file-versioning-info/569363#569363 1 Answer by Thomas Vander Stichele for Python - subversion file versioning info Thomas Vander Stichele 2009-02-20T12:11:55Z 2009-02-20T12:11:55Z <p>Davey, if you are trying to figure out repository information on an SVN checkout using only the standard Python modules, you're out of luck.</p> <p>You will need some additional Python modules. You can use the Subversion python bindings which come are shipped with subversion itself, or something a little more pythonic like <a href="http://pysvn.tigris.org/" rel="nofollow">pysvn</a>.</p> http://stackoverflow.com/questions/415887/how-can-i-figure-out-what-code-page-i-am-looking-at 0 How can I figure out what code page I am looking at ? Thomas Vander Stichele 2009-01-06T09:08:00Z 2009-01-14T15:35:39Z <p>I have a device with some documentation on how to send it text. It uses 0x00-0x7F to send 'special' characters like accented characters, euro signs, ...</p> <p>I am guessing they copied an existing code page and made some changes, but I have no idea how to figure out what code page is closest to the one in my documentation.</p> <p>In theory, this should be easy to do. For example, they map Á to 0x41, so if I could find some way to go through all code pages and find the ones that have this character on that position, it would be a piece of cake.</p> <p>However, all I can find on the internet are links to code page dumps just like the one I'm looking at, or software that uses heuristics to read text and guess the most likely code page. Surely someone out there has made it possible to look up what code page one is looking at ?</p> http://stackoverflow.com/questions/220866/best-video-manipulation-library-for-python/223570#223570 3 Answer by Thomas Vander Stichele for Best video manipulation library for python? Thomas Vander Stichele 2008-10-21T21:26:52Z 2008-11-14T05:26:49Z <p>gst-python isn't coupled with pygtk at all - it just happens to share a common object model (pygobject) and a way to help generate bindings. But you can easily use gst-python without pygtk - take <a href="http://www.flumotion.net/Flumotion" rel="nofollow">Flumotion</a> as an example.</p> <p>Here's a <a href="http://thomas.apestaart.org/thomas/trac/browser/src/gst-demo/trunk" rel="nofollow">small demo</a> I put together; one with an example of a player with a GTK frontend, and one with a wx frontend.</p> http://stackoverflow.com/questions/280767/definition-of-filename 1 definition of filename ? Thomas Vander Stichele 2008-11-11T12:38:53Z 2008-11-11T14:23:29Z <p>After years of programming it's still some of the simple things that keep tripping me up.</p> <p>Is there a commonly agreed definition of filename ?</p> <p>Even the <a href="http://en.wikipedia.org/wiki/Filename" rel="nofollow">wikipedia article</a> confuses the two interpretations.</p> <p>It starts by defining it as 'a special kind of string used to uniquely identify a file stored on the file system of a computer'. That seems clear enough, and suggests that a filename is a fully qualified filename, specifying the complete path to the file.</p> <p>However, it then goes on to:</p> <ul> <li>talk about basename and extension (so basename would contain an absolute path ?)</li> <li>says that the length of a filename in DOS is limited to 8.3</li> <li>says that a filename without a path part is assumed to be a file in the current working directory (so the filename does not uniquely identify a file)</li> </ul> <p>So, simple questions:</p> <ul> <li>what is a correct definition of 'filename' (include references)</li> <li>how should I unambiguously name variables for: <ul> <li>a path to a file (which can be absolute/full or relative)</li> <li>a path to a resource that can be a file/directory/socket</li> </ul></li> </ul> http://stackoverflow.com/questions/236692/how-do-i-convert-any-image-to-a-4-color-paletted-image-using-the-python-imaging-l 3 How do I convert any image to a 4-color paletted image using the Python Imaging Library ? Thomas Vander Stichele 2008-10-25T17:00:09Z 2008-11-08T01:52:54Z <p>I have a device that supports 4-color graphics (much like CGA in the old days).</p> <p>I wanted to use <a href="http://www.pythonware.com/products/pil/" rel="nofollow">PIL</a> to read the image and convert it using my 4-color palette (of red, green, yellow, black), but I can't figure out if it's even possible at all. I found some mailing list archive posts that seem to suggest other people have tried to do so and failed.</p> <p>A simple python example would be much appreciated!</p> <p>Bonus points if you add something that then converts the image to a byte string where each byte represents 4 pixels of data (with each two bits representing a color from 0 to 3)</p> http://stackoverflow.com/questions/249703/how-can-a-process-intercept-stdout-and-stderr-of-another-process-on-linux 5 How can a process intercept stdout and stderr of another process on Linux ? Thomas Vander Stichele 2008-10-30T09:55:50Z 2008-10-30T19:29:30Z <p>I have some scripts that ought to have stopped running but hang around for ever.</p> <p>Is there some way I can figure out what they're writing to stdout and stderr in a readable way ?</p> <p>I tried, for example, to do</p> <pre><code>tail -f /proc/(pid)/fd/1 </code></pre> <p>but that doesn't really work. It was a long shot anyway.</p> <p>Any other ideas ? strace on its own is quite verbose and unreadable for seeing this.</p> <p>Note: I am <em>only</em> interested in their output, not in anything else. I'm capable of figuring out the other things on my own; this question is only focused on getting access to stdout and stderr of the running process <em>after</em> starting it.</p> http://stackoverflow.com/questions/249703/how-can-a-process-intercept-stdout-and-stderr-of-another-process-on-linux/249932#249932 8 Answer by Thomas Vander Stichele for How can a process intercept stdout and stderr of another process on Linux ? Thomas Vander Stichele 2008-10-30T11:57:31Z 2008-10-30T11:57:31Z <p>Since I'm not allowed to edit Jauco's answer, I'll give the full answer that worked for me (Russell's page relies on unguaranteed behaviour that, if you close fd 1 for stdout, the next creat call will open fd 1.</p> <p>So, run a simple endless script like this:</p> <pre><code>import time while True: print 'test' time.sleep(1) </code></pre> <p>Save it to test.py, run with</p> <pre><code>python test.py </code></pre> <p>Get the pid:</p> <pre><code>ps auxw | grep test.py </code></pre> <p>Now, attach gdb:</p> <pre><code>gdb -p (pid) </code></pre> <p>and do the fd magic:</p> <pre><code>(gdb) call creat("/tmp/stdout", 0600) $1 = 3 (gdb) call dup2(3, 1) $2 = 1 </code></pre> <p>Now you can tail /tmp/stdout and see the output that used to go to stdout.</p> http://stackoverflow.com/questions/236359/what-is-your-convention-to-distinguish-between-object-methods-to-be-called-by-the 1 What is your convention to distinguish between object methods to be called by the outside, and object methods to be called by a subclass ? Thomas Vander Stichele 2008-10-25T12:54:37Z 2008-10-26T12:48:00Z <p>I know most of the ins and outs of Python's approach to private variables/members/functions/...</p> <p>However, I can't make my mind up on how to distinguish between methods for external use or subclassing use.</p> <p>Consider the following example:</p> <pre><code>class EventMixin(object): def subscribe(self, **kwargs): '''kwargs should be a dict of event -&gt; callable, to be specialized in the subclass''' def event(self, name, *args, **kwargs): ... def _somePrivateMethod(self): ... </code></pre> <p>In this example, I want to make it clear that subscribe is a method to be used by external users of the class/object, while event is a method that should not be called from the outside, but rather by subclass implementations.</p> <p>Right now, I consider both part of the public API, hence don't use any underscores. However, for this particular situation, it would feel cleaner to, for example, use no underscores for the external API, one underscore for the subclassable API, and two underscores for the private/internal API. However, that would become unwieldy because then the internal API would need to be invoked as</p> <pre><code>self._EventMixin__somePrivateMethod() </code></pre> <p>So, what are your conventions, coding-wise, documentationwise, or otherwise ?</p> http://stackoverflow.com/questions/237731/daylight-savings-time-change-affecting-the-outcome-of-saving-and-loading-an-icale 1 Daylight savings time change affecting the outcome of saving and loading an icalendar file ? Thomas Vander Stichele 2008-10-26T08:26:31Z 2008-10-26T09:31:08Z <p>I have some unit tests that started failing today after a switch in daylight savings time.</p> <p>We're using the <a href="http://codespeak.net/icalendar/" rel="nofollow">iCalendar python module</a> to load and save ics files.</p> <p>The following script is a simplified version of our test. The script works fine in 'summer' and fails in 'winter', as of this morning. The failure can be reproduced by setting the clock back manually. Here's the output of the script:</p> <pre><code>[root@ana icalendar]# date 10250855 Sat Oct 25 08:55:00 CEST 2008 [root@ana icalendar]# python dst.py DTSTART should represent datetime.datetime(2015, 4, 4, 8, 0, tzinfo=tzfile('/usr/share/zoneinfo/Europe/Brussels')) Brussels time DTSTART should represent datetime.datetime(2015, 4, 4, 6, 0, tzinfo=&lt;icalendar.prop.UTC object at 0x956b5cc&gt;) UTC DTSTART represents datetime.datetime(2015, 4, 4, 6, 0, tzinfo=&lt;icalendar.prop.UTC object at 0x956b5cc&gt;) Brussels time [root@ana icalendar]# date 10260855 Sun Oct 26 08:55:00 CET 2008 [root@ana icalendar]# python dst.py DTSTART should represent datetime.datetime(2015, 4, 4, 8, 0, tzinfo=tzfile('/usr/share/zoneinfo/Europe/Brussels')) Brussels time DTSTART should represent datetime.datetime(2015, 4, 4, 6, 0, tzinfo=&lt;icalendar.prop.UTC object at 0x96615cc&gt;) UTC DTSTART represents datetime.datetime(2015, 4, 4, 7, 0, tzinfo=&lt;icalendar.prop.UTC object at 0x96615cc&gt;) Brussels time Traceback (most recent call last): File "dst.py", line 58, in &lt;module&gt; start.dt, startUTCExpected) AssertionError: calendar's datetime.datetime(2015, 4, 4, 7, 0, tzinfo=&lt;icalendar.prop.UTC object at 0x96615cc&gt;) != expected datetime.datetime(2015, 4, 4, 6, 0, tzinfo=&lt;icalendar.prop.UTC object at 0x96615cc&gt;) </code></pre> <p>And here is the <a href="https://thomas.apestaart.org/thomas/trac/browser/tests/icalendar/dst.py" rel="nofollow">whole script</a>.</p> <p>So, questions: - why would my current time (and which part of DST I'm in) affect the loading/saving/parsing of timestamps ? I would expect it not to. - how would you unit test this kind of bug, if it is a bug ? Obviously, I don't want my unit tests to reset the clock on my computer.</p> http://stackoverflow.com/questions/236692/how-do-i-convert-any-image-to-a-4-color-paletted-image-using-the-python-imaging-l/237747#237747 2 Answer by Thomas Vander Stichele for How do I convert any image to a 4-color paletted image using the Python Imaging Library ? Thomas Vander Stichele 2008-10-26T08:41:58Z 2008-10-26T08:41:58Z <p>John, I found that first link as well, but it didn't directly help me with the problem. It did make me look deeper into quantize though.</p> <p>I came up with this yesterday before going to bed:</p> <pre><code>import sys import PIL import Image PALETTE = [ 0, 0, 0, # black, 00 0, 255, 0, # green, 01 255, 0, 0, # red, 10 255, 255, 0, # yellow, 11 ] + [0, ] * 252 * 3 # a palette image to use for quant pimage = Image.new("P", (1, 1), 0) pimage.putpalette(PALETTE) # open the source image image = Image.open(sys.argv[1]) image = image.convert("RGB") # quantize it using our palette image imagep = image.quantize(palette=pimage) # save imagep.save('/tmp/cga.png') </code></pre> <p>TZ.TZIOY, your solution seems to work along the same principles. Kudos, I should have stopped working on it and waited for your reply. Mine is a bit simpler, although definately not more logical than yours. PIL is cumbersome to use. Yours explains what's going on to do it.</p> http://stackoverflow.com/questions/83899/video-capture-on-linux/92449#92449 1 Answer by Thomas Vander Stichele for Video capture on Linux? Thomas Vander Stichele 2008-09-18T13:18:22Z 2008-10-26T08:28:28Z <p>If you need to program, you're best off using <a href="http://gstreamer.freedesktop.org" rel="nofollow" title="GStreamer">GStreamer</a>, a multimedia framework under Linux.</p> <p>Cheese, mentioned by jackbravo, is based on GStreamer, as is <a href="http://www.flumotion.net/" rel="nofollow">Flumotion</a>, a streaming server I work on.</p> http://stackoverflow.com/questions/235435/environment-variables-in-python-on-linux/235448#235448 1 Answer by Thomas Vander Stichele for Environment Variables in Python on Linux Thomas Vander Stichele 2008-10-24T22:16:52Z 2008-10-24T22:29:12Z <p>Looking at the Python source code (2.4.5):</p> <ul> <li><p>Modules/posixmodule.c gets the environ in convertenviron() which gets run at startup (see INITFUNC) and stores the environment in a platform-specific module (nt, os2, or posix)</p></li> <li><p>Lib/os.py looks at sys.builtin_module_names, and imports all symbols from either posix, nt, or os2</p></li> </ul> <p>So yes, it gets decided at startup. os.environ is not going to be helpful here.</p> <p>If you really want to do this, then the most obvious approach that comes to mind is to create your own custom C-based python module, with a getenv that always invokes the system call.</p> http://stackoverflow.com/questions/235416/how-do-i-implement-a-custom-code-page-used-by-a-serial-device-so-i-can-convert-te 1 how do I implement a custom code page used by a serial device so I can convert text to it in Python ? Thomas Vander Stichele 2008-10-24T22:07:57Z 2008-10-24T22:13:59Z <p>I have a scrolling LED sign that takes messages in either ASCII or (using some specific code) characters from a custom code page.</p> <p>For example, the euro sign should be sent as</p> <pre><code>&lt;U00&gt; </code></pre> <p>and ä is</p> <pre><code>&lt;U64&gt; </code></pre> <p>(You can find the full code page in the <a href="http://www.domoticaforum.eu/uploaded/Jfn/20082291593_RGB%20ledbar%20conrad.pdf" rel="nofollow">documentation</a>)</p> <p>My question is, what is the most pythonic way to implement this custom code page, and to have a codec that can convert UTF strings to my custom code page ?</p> http://stackoverflow.com/questions/180606/how-do-i-convert-a-list-of-ascii-values-to-a-string-in-python/180617#180617 3 Answer by Thomas Vander Stichele for How do I convert a list of ascii values to a string in python? Thomas Vander Stichele 2008-10-07T21:55:06Z 2008-10-07T21:55:06Z <pre><code>l = [83, 84, 65, 67, 75] s = "".join([chr(c) for c in l]) print s </code></pre> http://stackoverflow.com/questions/130074/is-there-an-inverse-function-for-time-gmtime-that-parses-a-utc-tuple-to-seconds 2 Is there an inverse function for time.gmtime() that parses a UTC tuple to seconds since the epoch ? Thomas Vander Stichele 2008-09-24T21:24:04Z 2008-10-02T08:42:45Z <p>python's time module seems a little haphazard. For example, here is a list of methods in there, from the docstring:</p> <pre><code>time() -- return current time in seconds since the Epoch as a float clock() -- return CPU time since process start as a float sleep() -- delay for a number of seconds given as a float gmtime() -- convert seconds since Epoch to UTC tuple localtime() -- convert seconds since Epoch to local time tuple asctime() -- convert time tuple to string ctime() -- convert time in seconds to string mktime() -- convert local time tuple to seconds since Epoch strftime() -- convert time tuple to string according to format specification strptime() -- parse string to time tuple according to format specification tzset() -- change the local timezone </code></pre> <p>Looking at localtime() and its inverse mktime(), why is there no inverse for gmtime() ?</p> <p>Bonus questions: what would you name the method ? How would you implement it ?</p> http://stackoverflow.com/questions/31937/what-is-your-favourite-non-standard-c-library-function 1 What is your favourite non-standard C library function ? Thomas Vander Stichele 2008-08-28T09:54:57Z 2008-10-01T16:01:11Z <p>It has to be in a 'system' C library, not an add-on library, but it can be from any C version/compiler/system/...</p> <p>Mine's strfry, from glibc, the GNU C library:</p> <blockquote> <pre><code> The strfry() function randomizes the contents of string by using rand(3) to randomly swap characters in the string. The result is an anagram of string. </code></pre> </blockquote> http://stackoverflow.com/questions/94161/where-to-put-helper-scripts-with-gnu-autoconf-automake/156629#156629 0 Answer by Thomas Vander Stichele for Where to put helper-scripts with GNU autoconf/automake? Thomas Vander Stichele 2008-10-01T07:57:23Z 2008-10-01T07:57:23Z <p>Jonathan, in response to your additional question: if you want to replace the value of prefix at the time of build, you will need to:</p> <ol> <li>rename your script 'myscript' to 'myscript.in'</li> <li>add a rule to configure.ac to generate it at the bottom</li> <li>use a macro I made called AS_AC_EXPAND</li> <li><p>use it like this:</p> <p>AS_AC_EXPAND(BINDIR, $bindir)</p></li> <li><p>in your 'myscript.in', you can now use @BINDIR@ and it will get expanded to the full path where the script will end up being installed.</p></li> </ol> <p>Note that you shouldn't use PREFIX directly, any of the installation directories can potentially be changed so you really want to use the value passed to configure for bindir and expand that.</p> http://stackoverflow.com/questions/153584/how-to-iterate-over-a-timespan-after-days-hours-weeks-and-months-in-python/155172#155172 4 Answer by Thomas Vander Stichele for How to iterate over a timespan after days, hours, weeks and months in Python? Thomas Vander Stichele 2008-09-30T21:30:00Z 2008-09-30T21:36:34Z <p>Use <a href="http://labix.org/python-dateutil" rel="nofollow">dateutil</a> and its rrule implementation, like so:</p> <pre><code>from dateutil import rrule from datetime import datetime, timedelta now = datetime.now() hundredDaysLater = now + timedelta(days=100) for dt in rrule.rrule(rrule.MONTHLY, dtstart=now, until=hundredDaysLater): print dt </code></pre> <p>Output is</p> <pre><code>2008-09-30 23:29:54 2008-10-30 23:29:54 2008-11-30 23:29:54 2008-12-30 23:29:54 </code></pre> <p>Replace MONTHLY with any of YEARLY, MONTHLY, WEEKLY, DAILY, HOURLY, MINUTELY, or SECONDLY. Replace dtstart and until with whatever datetime object you want.</p> <p>This recipe has the advantage for working in all cases, including MONTHLY. Only caveat I could find is that if you pass a day number that doesn't exist for all months, it skips those months.</p> http://stackoverflow.com/questions/140549/what-character-set-should-i-assume-the-encoded-characters-in-a-url-to-be-in 4 What character set should I assume the encoded characters in a URL to be in ? Thomas Vander Stichele 2008-09-26T16:28:20Z 2008-09-26T18:28:59Z <p><a href="http://www.ietf.org/rfc/rfc1738.txt" rel="nofollow">RFC 1738</a> specifies the syntax for URL's, and mentions that</p> <blockquote> <p>URLs are written only with the graphic printable characters of the<br /> US-ASCII coded character set. The octets 80-FF hexadecimal are not<br /> used in US-ASCII, and the octets 00-1F and 7F hexadecimal represent<br /> control characters; these must be encoded.</p> </blockquote> <p>It does not, however, say what code set these octets then represent.</p> <p><a href="http://www.ietf.org/rfc/rfc2396.txt" rel="nofollow">RFC 2396</a> seems to try and improve on the situation, but:</p> <blockquote> <p>For original character sequences that contain non-ASCII characters, however, the situation is more difficult. Internet protocols that transmit octet sequences intended to represent character sequences are expected to provide some way of identifying the charset used, if there might be more than one [RFC2277]. However, there is currently no provision within the generic URI syntax to accomplish this identification. An individual URI scheme may require a single charset, define a default charset, or provide a way to indicate the charset used.</p> <p>It is expected that a systematic treatment of character encoding within URI will be developed as a future modification of this specification.</p> </blockquote> <p>Is there any unambigous way in which a client can determine in which character set to interpret encoded octets, or in which a server can determine what a client used to encode with ?</p> <p>It looks to me like most servers default to UTF-8, but this seems to be a de facto choice more than a specified one.</p> http://stackoverflow.com/questions/133860/running-subversion-under-apache-and-modpython/138587#138587 0 Answer by Thomas Vander Stichele for Running subversion under apache and mod_python Thomas Vander Stichele 2008-09-26T10:06:52Z 2008-09-26T10:06:52Z <p>The Permission Denied error is showing that the script is running with root credentials, because it's looking in root's home dir for files.</p> <p>I suggest you change the hook script to something that does:</p> <pre><code>id &gt; /tmp/id </code></pre> <p>so that you can check the results of that to make sure what the uid/gid and euid/egid are. You will probably find it's not actually running as the user you think it is.</p> <p>My first guess, like Troels, was also SELinux, but that would only be my guess if you are absolutely sure the script through Apache is running with exactly the same user/group as your manual test.</p> http://stackoverflow.com/questions/115764/which-is-more-pythonic-factory-as-a-function-in-a-module-or-as-a-method-on-the 0 Which is more pythonic, factory as a function in a module, or as a method on the class it creates ? Thomas Vander Stichele 2008-09-22T16:03:41Z 2008-09-22T16:32:29Z <p>I have some Python code that creates a Calendar object based on parsed VEvent objects from and iCalendar file.</p> <p>The calendar object just has a method that adds events as they get parsed.</p> <p>Now I want to create a factory function that creates a calendar from a file object, path, or URL.</p> <p>I've been using the <a href="http://codespeak.net/icalendar/" rel="nofollow">iCalendar python module</a>, which implements a factory function as a class method directly on the Class that it returns an instance of:</p> <pre><code>cal = icalendar.Calendar.from_string(data) </code></pre> <p>From what little I know about Java, this is a common pattern in Java code, though I seem to find more references to a factory method being on a different class than the class you actually want to instantiate instances from.</p> <p>The question is, is this also considered Pythonic ? Or is it considered more pythonic to just create a module-level method as the factory function ?</p> http://stackoverflow.com/questions/1436758/libtool-deleted-by-make-distclean/1439646#1439646 Comment by Thomas Vander Stichele on libtool deleted by 'make distclean' Thomas Vander Stichele 2009-11-03T23:21:42Z 2009-11-03T23:21:42Z 'bootstrap' conventionally is for scripts that do everything <i>but</i> configure.ac 'autogen.sh' conventionally does everything 'bootstrap' does, plus configure. http://stackoverflow.com/questions/1044651/how-to-programatically-get-the-latest-commit-date-on-a-cvs-checkout/1045242#1045242 Comment by Thomas Vander Stichele on How to programatically get the latest commit date on a CVS checkout Thomas Vander Stichele 2009-06-28T12:03:52Z 2009-06-28T12:03:52Z That was the only thing I could come up with too, roughly. In the end, I did one cvs log though, and parsed that for all files. Doing it on each file was going to be dead slow. http://stackoverflow.com/questions/3667/what-is-your-favorite-web-app-deployment-workflow-with-svn/29213#29213 Comment by Thomas Vander Stichele on What is your favorite web app deployment workflow with SVN? Thomas Vander Stichele 2009-02-06T09:41:32Z 2009-02-06T09:41:32Z the web site code handles updates to the database from an admin URL, and there is a database 'version number' to know when to upgrade. http://stackoverflow.com/questions/415887/how-can-i-figure-out-what-code-page-i-am-looking-at/415985#415985 Comment by Thomas Vander Stichele on How can I figure out what code page I am looking at ? Thomas Vander Stichele 2009-01-06T11:51:45Z 2009-01-06T11:51:45Z The use in 'closest codepage' is that in some programming languages, like python, it is easy to register a new code page that derives from an existing one. My specific case is not interesting to SO, the generic case of 'how to look up a code page that has a given character in a given position' is. http://stackoverflow.com/questions/228181/zen-of-python/229225#229225 Comment by Thomas Vander Stichele on zen of python Thomas Vander Stichele 2008-10-24T22:35:25Z 2008-10-24T22:35:25Z Is there really only one way to do it though ? how about a = cond and expr1 or expr2 ? http://stackoverflow.com/questions/156504/how-to-skip-the-docstring-using-regex Comment by Thomas Vander Stichele on How to skip the docstring using regex Thomas Vander Stichele 2008-10-01T07:47:46Z 2008-10-01T07:47:46Z Note that PEP8 recommends to put imports before docstrings. http://stackoverflow.com/questions/87458/can-you-specify-filenames-using-wildcards-or-regexes-in-the-subversion-mv-command/87488#87488 Comment by Thomas Vander Stichele on Can you specify filenames using wildcards or regexes in the subversion mv command? Thomas Vander Stichele 2008-09-19T07:19:14Z 2008-09-19T07:19:14Z Where do you see svn move accepting more than one source argument ? http://stackoverflow.com/questions/94334/distributed-python/94385#94385 Comment by Thomas Vander Stichele on Distributed python Thomas Vander Stichele 2008-09-18T21:46:07Z 2008-09-18T21:46:07Z bittorrent uses twisted.