User Glyph - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T14:03:21Z http://stackoverflow.com/feeds/user/13564 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1579350/running-tests-from-a-module/1579630#1579630 0 Answer by Glyph for Running Tests From a Module Glyph 2009-10-16T18:29:46Z 2009-10-16T18:29:46Z <p>Using Twisted's "trial" test runner, you can get rid of TestSuite.py, and just do:</p> <pre><code>$ trial UnitTests.TestConvertStringToNumber </code></pre> <p>on the command line; or, better yet, just</p> <pre><code>$ trial UnitTests </code></pre> <p>to discover and run all tests in the package.</p> http://stackoverflow.com/questions/203969/how-do-i-get-from-an-instance-of-a-class-to-a-class-object-in-actionscript-3 6 How do I get from an instance of a class to a Class object in ActionScript 3? Glyph 2008-10-15T07:51:17Z 2009-09-15T02:41:45Z <p>How do you get an instance of the actionscript class <code>Class</code> from an instance of that class?</p> <p>In Python, this would be <code>x.__class__</code>; in Java, <code>x.getClass();</code>.</p> <p>I'm aware that <a href="http://actionscript.org/forums/showthread.php3?t=120135#td_post_545693" rel="nofollow">certain terrible hacks</a> exist to do this, but I'm looking for a built-in language facility, or at least a library routine built on something reliable.</p> http://stackoverflow.com/questions/1365737/managing-multiple-twisted-client-connections/1408498#1408498 1 Answer by Glyph for Managing multiple Twisted client connections Glyph 2009-09-11T00:52:04Z 2009-09-11T00:52:04Z <p>The best option is really just to do the obvious thing here. Don't have a loop, or a repeating timed call; just have handlers that do the right thing.</p> <p>Keep a central connection-management object around, and make event-handling methods feed it the information it needs to keep going. When it starts, make 5 outgoing connections. Keep track of how many are in progress, maintain a list with them in it. When a connection succeeds (in <code>connectionMade</code>) update the list to remember the connection's new state. When a connection completes (in <code>connectionLost</code>) tell the connection manager; its response should be to remove that connection and make a new connection somewhere else. In the middle, it should be fairly obvious how to fire off a request for the names you need and stuff them into a database (waiting for the database insert to complete before dropping your IRC connection, most likely, by waiting for the <code>Deferred</code> to come back from <code>adbapi</code>).</p> http://stackoverflow.com/questions/1404066/good-way-to-write-a-lightweight-client-function-to-be-imported-twisted-python/1404238#1404238 2 Answer by Glyph for Good way to write a lightweight client function to be imported Twisted Python Glyph 2009-09-10T09:16:52Z 2009-09-10T09:16:52Z <p>You want <code>getHash</code> to return a <code>Deferred</code>, not a synchronous value.</p> <p>The way to do this is to create a <code>Deferred</code> and associate it with the connection that performs a particular request.</p> <p>The following is untested and probably won't work, but it should give you a rough idea:</p> <pre><code>import simplejson from twisted.python.protocol import ClientFactory from twisted.internet.defer import Deferred from twisted.internet import reactor from twisted.protocols.basic import LineReceiver class BufferingJSONRequest(LineReceiver): buf = '' def connectionMade(self): self.sendLine(simplejson.dumps(self.factory.params)) def dataReceived(self, data): self.buf += data def connectionLost(self, reason): deferred = self.factory.deferred try: result = simplejson.load(self.buf) except: deferred.errback() else: deferred.callback(result) class BufferingRequestFactory(ClientFactory): protocol = BufferingJSONRequest def __init__(self, params, deferred): self.params = params self.deferred = deferred def clientConnectionFailed(self, connector, reason): self.deferred.errback(reason) def getHash(params): result = Deferred() reactor.connectUNIX(LOCATION_THASHER, BufferingRequestFactory(params, result)) return result </code></pre> <p>Now, in order to <em>use</em> this function, you will already need to be familiar with Deferreds, and you will need to write a callback function to run when the result eventually arrives. But an explanation of those belongs on a separate question ;).</p> http://stackoverflow.com/questions/217157/how-can-i-determine-the-display-idle-time-from-python-in-windows-linux-and-maco 6 How can I determine the display idle time from Python in Windows, Linux, and MacOS? Glyph 2008-10-19T23:25:08Z 2009-07-17T21:07:04Z <p>I would like to know how long it's been since the user last hit a key or moved the mouse - not just in my application, but on the whole "computer" (i.e. display), in order to guess whether they're still at the computer and able to observe notifications that pop up on the screen.</p> <p>I'd like to do this purely from (Py)GTK+, but I am amenable to calling platform-specific functions. Ideally I'd like to call functions which have already been wrapped from Python, but if that's not possible, I'm not above a little bit of C or <code>ctypes</code> code, as long as I know what I'm actually looking for.</p> <p>On Windows I think the function I want is <a href="http://msdn.microsoft.com/en-us/library/ms646302.aspx" rel="nofollow"><code>GetLastInputInfo</code></a>, but that doesn't seem to be wrapped by pywin32; I hope I'm missing something.</p> http://stackoverflow.com/questions/1104587/twisted-sometimes-throws-seemingly-incomplete-maximum-recursion-depth-exceeded/1108849#1108849 2 Answer by Glyph for Twisted sometimes throws (seemingly incomplete) 'maximum recursion depth exceeded' RuntimeError Glyph 2009-07-10T10:38:43Z 2009-07-10T10:38:43Z <p>The specific traceback that you're looking at is a bit mystifying. You could try <code>traceback.print_stack</code> rather than <code>traceback.print_exc</code> to get a look at the <em>entire</em> stack above the problematic code, rather than just the stack going back to where the exception is caught.</p> <p>Without seeing more of your traceback I can't be certain, but you <em>may</em> be running into <a href="http://twistedmatrix.com/trac/ticket/411" rel="nofollow">the problem where Deferreds will raise a recursion limit exception if you chain too many of them together</a>.</p> <p>If you turn on Deferred debugging (<code>from twisted.internet.defer import setDebugging; setDebugging(True)</code>) you may get more useful tracebacks in some cases, but please be aware that this may also slow down your server quite a bit.</p> http://stackoverflow.com/questions/1087799/starting-and-controlling-an-external-process-via-stdin-stdout-with-python/1103295#1103295 0 Answer by Glyph for Starting and Controlling an External Process via STDIN/STDOUT with Python Glyph 2009-07-09T11:29:37Z 2009-07-09T11:29:37Z <p>You could use Twisted, by using <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.internet.interfaces.IReactorProcess.spawnProcess.html" rel="nofollow">reactor.spawnProcess</a> and <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.protocols.basic.LineReceiver.html" rel="nofollow">LineReceiver</a>.</p> http://stackoverflow.com/questions/1102825/moving-files-under-python/1103106#1103106 0 Answer by Glyph for Moving files under python Glyph 2009-07-09T10:34:00Z 2009-07-09T10:34:00Z <p>Using Twisted's <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.python.filepath.FilePath.html" rel="nofollow">FilePath</a>:</p> <pre><code>from twisted.python.filepath import FilePath FilePath("c:/a").moveTo(FilePath("c:/b/a")) </code></pre> <p>or, more generally:</p> <pre><code>from twisted.python.filepath import FilePath def moveToExistingDir(fileOrDir, existingDir): fileOrDir.moveTo(existingDir.child(fileOrDir.basename())) moveToExistingDir(FilePath("c:/a"), FilePath("c:/b")) </code></pre> http://stackoverflow.com/questions/1087227/validate-ssl-certificates-with-python/1088224#1088224 7 Answer by Glyph for Validate SSL certificates with Python Glyph 2009-07-06T17:29:48Z 2009-07-06T17:29:48Z <p>You can use Twisted to verify certificates. The main API is <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.internet.ssl.CertificateOptions.html" rel="nofollow">CertificateOptions</a>, which can be provided as the <code>contextFactory</code> argument to various functions such as <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.internet.interfaces.IReactorSSL.listenSSL.html" rel="nofollow">listenSSL</a> and <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.internet.interfaces.ITLSTransport.html#startTLS" rel="nofollow">startTLS</a>.</p> <p>Unfortunately, neither Python nor Twisted comes with a the pile of CA certificates required to actually do HTTPS validation, nor the HTTPS validation logic. Due to <a href="https://bugs.launchpad.net/pyopenssl/+bug/324857" rel="nofollow">a limitation in PyOpenSSL</a>, you can't do it completely correctly just yet, but thanks to the fact that almost all certificates include a subject commonName, you can get close enough.</p> <p>Here is a naive sample implementation of a verifying Twisted HTTPS client which ignores wildcards and subjectAltName extensions, and uses the certificate-authority certificates present in the 'ca-certificates' package in most Ubuntu distributions. Try it with your favorite valid and invalid certificate sites :).</p> <pre><code>import os import glob from OpenSSL.SSL import Context, TLSv1_METHOD, VERIFY_PEER, VERIFY_FAIL_IF_NO_PEER_CERT, OP_NO_SSLv2 from OpenSSL.crypto import load_certificate, FILETYPE_PEM from twisted.python.urlpath import URLPath from twisted.internet.ssl import ContextFactory from twisted.internet import reactor from twisted.web.client import getPage certificateAuthorityMap = {} for certFileName in glob.glob("/etc/ssl/certs/*.pem"): # There might be some dead symlinks in there, so let's make sure it's real. if os.path.exists(certFileName): data = open(certFileName).read() x509 = load_certificate(FILETYPE_PEM, data) digest = x509.digest('sha1') # Now, de-duplicate in case the same cert has multiple names. certificateAuthorityMap[digest] = x509 class HTTPSVerifyingContextFactory(ContextFactory): def __init__(self, hostname): self.hostname = hostname isClient = True def getContext(self): ctx = Context(TLSv1_METHOD) store = ctx.get_cert_store() for value in certificateAuthorityMap.values(): store.add_cert(value) ctx.set_verify(VERIFY_PEER | VERIFY_FAIL_IF_NO_PEER_CERT, self.verifyHostname) ctx.set_options(OP_NO_SSLv2) return ctx def verifyHostname(self, connection, x509, errno, depth, preverifyOK): if preverifyOK: if self.hostname == x509.get_subject().commonName: return False return preverifyOK def secureGet(url): return getPage(url, HTTPSVerifyingContextFactory(URLPath(url).netloc)) def done(result): print 'Done!', len(result) secureGet("https://google.com/").addCallback(done) reactor.run() </code></pre> http://stackoverflow.com/questions/1047306/chat-comet-site-using-python-and-twisted/1087400#1087400 1 Answer by Glyph for Chat comet site using python and twisted Glyph 2009-07-06T14:50:30Z 2009-07-06T14:50:30Z <p>You can use <a href="http://www.divmod.org/trac/wiki/DivmodNevow" rel="nofollow">Nevow</a>, which is a web framework that is built on top of <a href="http://twistedmatrix.com/" rel="nofollow">Twisted</a>. The documentation for Nevow includes a fully functional <a href="http://divmod.org/trac/browser/trunk/Nevow/doc/howto/chattutorial/index.xhtml?rev=16627" rel="nofollow">two-way chat application</a> including examples of how to write <a href="http://divmod.org/trac/browser/trunk/Nevow/nevow/test/test%5Fhowtolistings.py#L175" rel="nofollow">unit tests</a> for it.</p> http://stackoverflow.com/questions/1008322/execution-order-with-threads-and-pygtk-on-windows/1012052#1012052 1 Answer by Glyph for Execution order with threads and PyGTK on Windows Glyph 2009-06-18T10:59:31Z 2009-06-18T10:59:31Z <p>Don't try to update or access your GUI from a thread. You're just asking for trouble. For example, the fact that "<code>get_text</code>" works <em>at all</em> in a thread is almost an accident. You might be able to rely on it in GTK - although I'm not even sure about that - but you won't be able to do so in other GUI toolkits.</p> <p>If you have things that really need doing in threads, you should get the data you need from the GUI <em>before</em> launching the thread, and then update the GUI from the thread by using <code>idle_add</code>, like this:</p> <pre><code>import time import gtk import gobject from threading import Thread w = gtk.Window() h = gtk.HBox() v = gtk.VBox() addend1 = gtk.Entry() h.add(addend1) h.add(gtk.Label(" + ")) addend2 = gtk.Entry() h.add(addend2) h.add(gtk.Label(" = ")) summation = gtk.Entry() summation.set_text("?") summation.set_editable(False) h.add(summation) v.add(h) progress = gtk.ProgressBar() v.add(progress) b = gtk.Button("Do It") v.add(b) w.add(v) status = gtk.Statusbar() v.add(status) w.show_all() def hardWork(a1, a2): messages = ["Doing the hard work to add %s to %s..." % (a1, a2), "Oof, I'm working so hard...", "Almost done..."] for index, message in enumerate(messages): fraction = index / float(len(messages)) gobject.idle_add(progress.set_fraction, fraction) gobject.idle_add(status.push, 4321, message) time.sleep(1) result = a1 + a2 gobject.idle_add(summation.set_text, str(result)) gobject.idle_add(status.push, 4321, "Done!") gobject.idle_add(progress.set_fraction, 1.0) def addthem(*ignored): a1 = int(addend1.get_text()) a2 = int(addend2.get_text()) Thread(target=lambda : hardWork(a1, a2)).start() b.connect("clicked", addthem) gtk.gdk.threads_init() gtk.main() </code></pre> <p>If you really, absolutely need to read data from the GUI in the middle of a thread (this is a really bad idea, don't do it - you can get into really surprising deadlocks, especially when the program is shutting down) there is a utility in Twisted, <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.internet.threads.html#blockingCallFromThread" rel="nofollow">blockingCallFromThread</a>, which will do the hard work for you. You can use it like this:</p> <pre><code>from twisted.internet.gtk2reactor import install install() from twisted.internet import reactor from twisted.internet.threads import blockingCallFromThread from threading import Thread import gtk w = gtk.Window() v = gtk.VBox() e = gtk.Entry() b = gtk.Button("Get Text") v.add(e) v.add(b) w.add(v) def inThread(): print 'Getting value' textValue = blockingCallFromThread(reactor, e.get_text) print 'Got it!', repr(textValue) def kickOffThread(*ignored): Thread(target=inThread).start() b.connect("clicked", kickOffThread) w.show_all() reactor.run() </code></pre> <p>If you want to see how the magic works, you can always <a href="http://twistedmatrix.com/trac/browser/trunk/twisted/internet/threads.py#L89" rel="nofollow">read the source</a>.</p> http://stackoverflow.com/questions/1002116/can-bin-be-overloaded-like-oct-and-hex-in-python-2-6/1011888#1011888 3 Answer by Glyph for Can bin() be overloaded like oct() and hex() in Python 2.6? Glyph 2009-06-18T10:04:34Z 2009-06-18T10:04:34Z <p>As you've already discovered, you can't override <code>bin()</code>, but it doesn't sound like you need to do that. You just want a 0-padded binary value. Unfortunately in python 2.5 and previous, you couldn't use "%b" to indicate binary, so you can't use the "%" string formatting operator to achieve the result you want.</p> <p>Luckily python 2.6 does offer what you want, in the form of the new <a href="http://docs.python.org/library/string.html#string-formatting" rel="nofollow">str.format()</a> method. I believe that this particular bit of line-noise is what you're looking for:</p> <pre><code>&gt;&gt;&gt; '{0:010b}'.format(19) '0000010011' </code></pre> <p>The syntax for this mini-language is under "<a href="http://docs.python.org/library/string.html#format-specification-mini-language" rel="nofollow">format specification mini-language</a>" in the docs. To save you some time, I'll explain the string that I'm using:</p> <ol> <li>parameter zero (i.e. <code>19</code>) should be formatted, using</li> <li>a magic "<code>0</code>" to indicate that I want 0-padded, right-aligned number, with</li> <li>10 digits of precision, in</li> <li>binary format.</li> </ol> <p>You can use this syntax to achieve a variety of creative versions of alignment and padding.</p> http://stackoverflow.com/questions/1011337/relative-file-paths-in-python-packages/1011491#1011491 0 Answer by Glyph for Relative file paths in Python packages Glyph 2009-06-18T08:33:57Z 2009-06-18T08:33:57Z <p>You can be zip-safe and at the same time use a nice convenient API if you use <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.python.modules.html" rel="nofollow">twisted.python.modules</a>.</p> <p>For example, if I have a <code>data.txt</code> with some text in it and and this <code>sample.py</code> in one directory:</p> <pre><code>from twisted.python.modules import getModule moduleDirectory = getModule(__name__).filePath.parent() print repr(moduleDirectory.child("data.txt").open().read()) </code></pre> <p>then importing <code>sample</code> will do this:</p> <pre><code>&gt;&gt;&gt; import sample 'Hello, data!\n' &gt;&gt;&gt; </code></pre> <p>If your module is in a regular directory, <code>getModule(__name__).filePath</code> will be a <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.python.filepath.FilePath.html" rel="nofollow">FilePath</a>; if it's in a zip file, it will be a <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.python.zippath.ZipPath.html" rel="nofollow">ZipPath</a>, which supports most, but not all, of the same APIs.</p> http://stackoverflow.com/questions/1009813/how-to-embed-some-application-window-in-my-application-using-any-python-gui-frame/1009942#1009942 2 Answer by Glyph for How to embed some application window in my application using any Python GUI framework. Glyph 2009-06-17T23:01:29Z 2009-06-17T23:01:29Z <p>Using GTK on X windows (i.e. Linux, FreeBSD, Solaris), you can use the XEMBED protocol to embed widgets using <a href="http://www.pygtk.org/docs/pygtk/class-gtksocket.html" rel="nofollow"><code>gtk.Socket</code></a>. Unfortunately, the application that you're launching has to explicitly support it so that you can tell it to embed itself. Some applications don't support this. Notably, I can't find a way to do it with Firefox.</p> <p>Nonetheless, here's a sample program that will run either an X terminal or an Emacs session inside a GTK window:</p> <pre><code>import os import gtk from gtk import Socket, Button, Window, VBox, HBox w = Window() e = Button("Emacs") x = Button("XTerm") s = Socket() v = VBox() h = HBox() w.add(v) v.add(s) h.add(e) h.add(x) v.pack_start(h, expand=False) def runemacs(btn): x.set_sensitive(False); e.set_sensitive(False) os.spawnlp(os.P_NOWAIT, "emacs", "emacs", "--parent-id", str(s.get_id())) def runxterm(btn): x.set_sensitive(False); e.set_sensitive(False) os.spawnlp(os.P_NOWAIT, "xterm", "xterm", "-into", str(s.get_id())) e.connect('clicked', runemacs) x.connect('clicked', runxterm) w.show_all() gtk.main() </code></pre> http://stackoverflow.com/questions/998674/make-my-code-handle-in-the-background-function-calls-that-take-a-long-time-to-fin/1006101#1006101 0 Answer by Glyph for Make my code handle in the background function calls that take a long time to finish Glyph 2009-06-17T09:54:22Z 2009-06-17T09:54:22Z <p>You can use a Future, which is not included in the standard library, but very simple to implement:</p> <pre><code>from threading import Thread, Event class Future(object): def __init__(self, thunk): self._thunk = thunk self._event = Event() self._result = None self._failed = None Thread(target=self._run).start() def _run(self): try: self._result = self._thunk() except Exception, e: self._failed = True self._result = e else: self._failed = False self._event.set() def wait(self): self._event.wait() if self._failed: raise self._result else: return self._result </code></pre> <p>You would use this particular implementation like this:</p> <pre><code>import time def work(): for x in range(3): time.sleep(1) print 'Tick...' print 'Done!' return 'Result!' def main(): print 'Starting up...' f = Future(work) print 'Doing more main thread work...' time.sleep(1.5) print 'Now waiting...' print 'Got result: %s' % f.wait() </code></pre> <p>Unfortunately, when using a system that has no "main" thread, it's hard to tell when to call "wait"; you obviously don't want to stop processing until you absolutely need an answer.</p> <p>With Twisted, you can use <code>deferToThread</code>, which allows you to return to the main loop. The idiomatically equivalent code in Twisted would be something like this:</p> <pre><code>import time from twisted.internet import reactor from twisted.internet.task import deferLater from twisted.internet.threads import deferToThread from twisted.internet.defer import inlineCallbacks def work(): for x in range(3): time.sleep(1) print 'Tick...' print 'Done!' return 'Result!' @inlineCallbacks def main(): print 'Starting up...' d = deferToThread(work) print 'Doing more main thread work...' yield deferLater(reactor, 1.5, lambda : None) print "Now 'waiting'..." print 'Got result: %s' % (yield d) </code></pre> <p>although in order to actually start up the reactor and exit when it's finished, you'd need to do this as well:</p> <pre><code>reactor.callWhenRunning( lambda : main().addCallback(lambda _: reactor.stop())) reactor.run() </code></pre> <p>The main difference with Twisted is that if more "stuff" happens in the main thread - other timed events fire, other network connections get traffic, buttons get clicked in a GUI - that work will happen seamlessly, because the <code>deferLater</code> and the <code>yield d</code> don't actually stop the whole thread, they only pause the "main" <code>inlineCallbacks</code> coroutine.</p> http://stackoverflow.com/questions/599218/authentication-required-problems-establishing-aim-oscar-session-using-python/1005063#1005063 1 Answer by Glyph for Authentication Required - Problems Establishing AIM OSCAR Session using Python Glyph 2009-06-17T04:03:55Z 2009-06-17T04:03:55Z <p>Try using <a href="http://twistedmatrix.com/trac/browser/trunk/twisted/words/protocols/oscar.py" rel="nofollow">Twisted's OSCAR support</a> instead of writing your own? It hasn't seen a lot of maintenance, but I believe it works.</p> http://stackoverflow.com/questions/833962/threading-tcp-server-as-proxy-between-connected-user-and-unix-socket/1005054#1005054 0 Answer by Glyph for Threading TCP Server as proxy between connected user and unix socket. Glyph 2009-06-17T03:56:57Z 2009-06-17T03:56:57Z <p>You should use Twisted, or, more specifically, <a href="http://orbited.org/" rel="nofollow">Orbited</a>, to push data to your clients. The sample code you posted has a number of potential problems, and it would be a lot harder to figure out what they all are than for you to just use a pre-built piece of code to do what you need.</p> http://stackoverflow.com/questions/913817/how-does-one-debug-a-fastcgi-application/1005007#1005007 0 Answer by Glyph for How does one debug a fastcgi application? Glyph 2009-06-17T03:43:01Z 2009-06-17T03:43:01Z <p>It does matter that the application is Python; your question is really "how do I debug Python when I'm not starting the script myself".</p> <p>You want to use a remote debugger. The excellent WinPDB has <a href="http://winpdb.org/docs/embedded-debugging/" rel="nofollow">some documentation on embedded debugging</a> which you should be able to use to attach to your FastCGI application and step through it.</p> http://stackoverflow.com/questions/1002841/pygtk-loading-a-flow-of-image-in-only-one-pixbuf/1004987#1004987 0 Answer by Glyph for pygtk loading a flow of image in only one pixbuf Glyph 2009-06-17T03:36:32Z 2009-06-17T03:36:32Z <p>You don't need to call the garbage collector. Python is automatically garbage collected. At the end of your method, <code>pixbuf</code> falls out of scope (you also don't need "<code>del pixbuf</code>") and will be automatically garbage collected. So for starters, delete the last two lines of your method.</p> <p>You might also want to just call your 'draw' method less often, if it's consuming too much CPU. In most applications I imagine the user could deal with updates every 200ms rather than every 50, if every 50ms means there's going to be a CPU problem.</p> http://stackoverflow.com/questions/789673/what-are-some-successful-methods-for-deploying-a-django-application-on-the-deskto/1004965#1004965 2 Answer by Glyph for What are some successful methods for deploying a Django application on the desktop? Glyph 2009-06-17T03:28:33Z 2009-06-17T03:28:33Z <p>If you want a good solution, you should give up on making it cross platform. Your code should all be portable, but your deployment - almost by definition - needs to be platform-specific.</p> <p>I would recommend using <a href="http://py2exe.org/" rel="nofollow"><code>py2exe</code></a> on Windows, <a href="http://pypi.python.org/pypi/py2app/" rel="nofollow"><code>py2app</code></a> on MacOS X, and building <code>deb</code> packages for Ubuntu with a <a href="http://standards.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html" rel="nofollow"><code>.desktop</code></a> file in the right place in the package for an entry to show up in the user's menu. Unfortunately for the last option there's no convenient 'py2deb' or 'py2xdg', but it's pretty easy to make the relevant text file by hand.</p> <p>And of course, I'd recommend bundling in <a href="http://blog.dreid.org/2009/03/twisted-django-it-wont-burn-down-your.html" rel="nofollow">Twisted as your web server</a> for making the application easily self-contained :).</p> http://stackoverflow.com/questions/962323/instance-methods-called-in-a-separate-thread-than-the-instantiation-thread/1004947#1004947 0 Answer by Glyph for Instance methods called in a separate thread than the instantiation thread Glyph 2009-06-17T03:20:12Z 2009-06-17T03:20:12Z <p>I wouldn't say that it's a "good idea". You should just run the reactor and the GUI in the same thread with wxreactor.</p> <p>The timer-driven event-loop starving approach described by Mr. Schroeder is the worst possible fail-safe way to implement event-loop integration. If you use <code>wxreactor</code> (not <code>wxsupport</code>) Twisted now uses an approach where multiplexing is shunted off to a thread internally so that nothing needs to use a timer. Better yet would be for wxpython to expose <code>wxSocket</code> and have someone base a reactor on it.</p> <p>However, if you're set on using a separate thread to communicate with Twisted, the one thing to keep in mind is that while you can use objects that originate from any thread you like as the value to pass to <code>Deferred.callback</code>, you must <em>call</em> <code>Deferred.callback</code> only in the reactor thread itself. Deferreds are not threadsafe; thanks to some debugging utilities, not even the <code>Deferred</code> <em>class</em> is threadsafe, so you need to be very careful when you are using them to never leave the Twisted main thread. i.e. when you have a result in the UI thread, use <code>reactor.callFromThread(myDeferred.callback, myresult)</code>.</p> http://stackoverflow.com/questions/956869/if-i-develop-a-chat-server-using-twisted-where-can-i-deploy-it/1004893#1004893 1 Answer by Glyph for If I develop a chat server using twisted, where can I deploy it? Glyph 2009-06-17T03:00:36Z 2009-06-17T03:00:36Z <p>You can deploy Twisted on any hosting provider who gives you a shell prompt and doesn't limit your long-running processes.</p> <p>Some examples that I've used include: <a href="http://www.tummy.com/" rel="nofollow">Tummy ltd.</a> and <a href="http://www.slicehost.com/" rel="nofollow">Slicehost</a>.</p> http://stackoverflow.com/questions/996004/enumeration-of-combinations-of-n-balls-in-a-boxes/996351#996351 1 Answer by Glyph for Enumeration of combinations of N balls in A boxes? Glyph 2009-06-15T14:15:03Z 2009-06-16T02:15:01Z <p>You can define a recursive <a href="http://docs.python.org/tutorial/classes.html#generators" rel="nofollow">generator</a> which creates a sub-generator for each 'for loop' which you wish to nest, like this:</p> <pre><code>def ballsAndBoxes(balls, boxes, boxIndex=0, sumThusFar=0): if boxIndex &lt; (boxes - 1): for counter in xrange(balls + 1 - sumThusFar): for rest in ballsAndBoxes(balls, boxes, boxIndex + 1, sumThusFar + counter): yield (counter,) + rest else: yield (balls - sumThusFar,) </code></pre> <p>When you call this at the top level, it will take only a 'balls' and 'boxes' argument, the others are there as defaults so that the recursive call can pass different things. It will yield tuples of integers (of length 'boxes') that are your values.</p> <p>To get the exact formatting you specified at the top of this post, you could call it something like this:</p> <pre><code>BALLS = 8 BOXES = 3 print '\t', for box in xrange(1, BOXES + 1): print '\tbox_%d' % (box,), print for position, value in enumerate(ballsAndBoxes(BALLS, BOXES)): print 'case-%d\t\t%s' % (position + 1, "\t".join((str(v) for v in value))) </code></pre> http://stackoverflow.com/questions/973073/pixmap-transparency-in-pygtk/996923#996923 1 Answer by Glyph for Pixmap transparency in PyGTK Glyph 2009-06-15T16:00:01Z 2009-06-15T16:00:01Z <p>I don't think you can do what you want with a <code>Pixmap</code> or <code>Pixbuf</code>, but here are two strategies for implementing scribbling on top of an existing <code>Widget</code>. The most obvious one is just to catch the draw event and draw straight onto the <code>Widget</code>'s <code>Drawable</code>, with no retained image in the middle:</p> <pre><code>from gtk import Window, Button, main from math import pi import cairo w = Window() b = Button("Draw on\ntop of me!") def scribble_on(cr): cr.set_source_rgb(0, 0, 0) cr.rectangle(10, 10, 30, 30) cr.fill() cr.arc(50, 50, 10, 0, pi) cr.stroke() def expose_handler(widget, event): cr = widget.window.cairo_create() cr.rectangle(event.area.x, event.area.y, event.area.width, event.area.height) cr.clip() scribble_on(cr) return False b.connect_after("expose_event", expose_handler) w.add(b) w.set_size_request(100, 100) w.show_all() main() </code></pre> <p>A second option, if you want to have an intermediary ARGB image that you don't have to update each time a redraw is requested, would be to pre-render the image to an <code>ImageSurface</code>. Here's a replacement for <code>expose_handler</code>, above, that only draws the image once:</p> <pre><code>import cairo surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, 100, 100) scribble_on(cairo.Context(surface)) def expose_image_handler(widget, event): cr = widget.window.cairo_create() cr.rectangle(event.area.x, event.area.y, event.area.width, event.area.height) cr.clip() cr.set_source_surface(surface) cr.paint() </code></pre> <p>If this is the sort of thing you're looking for, I would recommend updating the title of the question to reflect your real need :).</p> http://stackoverflow.com/questions/979551/adding-ssl-support-to-python-2-6/996622#996622 0 Answer by Glyph for Adding SSL support to Python 2.6 Glyph 2009-06-15T15:03:43Z 2009-06-15T15:03:43Z <p>Use the binaries provided by python.org or by your OS distributor. It's a lot easier than building it yourself, and all the features are usually compiled in.</p> <p>If you really need to build it yourself, you'll need to provide more information here about what build options you provided, what your environment is like, and perhaps provide some logs.</p> http://stackoverflow.com/questions/996437/memory-management-and-python-how-much-do-you-need-to-know/996485#996485 3 Answer by Glyph for Memory Management and Python: how much do you need to know? Glyph 2009-06-15T14:38:45Z 2009-06-15T14:38:45Z <p>In a word, "no".</p> <p>There are some edge cases where understanding the behavior of the Python memory management regime are useful, maybe even important, but these are extremely advanced areas. You can write secure, high-performance Python applications without the slightest idea how its garbage collector works.</p> <p>More importantly, if you are going to be teaching a student, it's much more important that you focus on a good understanding of the fundamentals than deep interpreter-internals stuff. Also, different python VMs have different garbage collectors, so learning about this too early would actually be a <em>bad</em> thing; if you learn about CPython garbage collection and then rely on tricks and fiddly details of its implementation, you'll find that your code won't work on PyPy, Jython, or IronPython. Whereas if you just write good Python code that assumes the garbage collector works as advertised but the specifics of its behavior are implementation-defined, your code will often just work.</p> http://stackoverflow.com/questions/992169/which-reactor-should-i-use-for-qt4/996006#996006 2 Answer by Glyph for Which reactor should i use for qt4? Glyph 2009-06-15T13:06:39Z 2009-06-15T13:06:39Z <p>You want to use Glen Tarbox's <a href="https://launchpad.net/qt4reactor" rel="nofollow">qt4reactor</a>.</p> http://stackoverflow.com/questions/803566/python-embedding-with-threads-avoiding-deadlocks/808498#808498 0 Answer by Glyph for Python embedding with threads -- avoiding deadlocks? Glyph 2009-04-30T18:53:15Z 2009-04-30T18:53:15Z <p>There was recently some discussion of a similar issue on the pyopenssl list. I'm afraid if I try to explain this I'm going to get it wrong, so instead I'll refer you to <a href="https://bugs.launchpad.net/pyopenssl/%2Bbug/344815" rel="nofollow">the problem in question</a>.</p> http://stackoverflow.com/questions/800197/get-all-of-the-immediate-subdirectories-in-python/800206#800206 3 Answer by Glyph for get all of the immediate subdirectories in python Glyph 2009-04-28T23:03:54Z 2009-04-30T18:42:43Z <p>Using Twisted's FilePath module:</p> <pre><code>from twisted.python.filepath import FilePath def subdirs(pathObj): for subpath in pathObj.walk(): if subpath.isdir(): yield subpath if __name__ == '__main__': for subdir in subdirs(FilePath(".")): print "Subdirectory:", subdir </code></pre> <p>Since some commenters have asked what the advantages of using Twisted's libraries for this is, I'll go a bit beyond the original question here.</p> <p><hr /></p> <p>There's <a href="http://twistedmatrix.com/trac/browser/branches/filepath-setcontent-2931-3/twisted/python/filepath.py#L6" rel="nofollow">some improved documentation</a> in a branch that explains the advantages of FilePath; you might want to read that.</p> <p>More specifically in this example: unlike the standard library version, this function can be implemented with <em>no imports</em>. The "subdirs" function is totally generic, in that it operates on nothing but its argument. In order to copy and move the files using the standard library, you need to depend on the "<code>open</code>" builtin, "<code>listdir</code>", perhaps "<code>isdir</code>" or "<code>os.walk</code>" or "<code>shutil.copy</code>". Maybe "<code>os.path.join</code>" too. Not to mention the fact that you need a string passed an argument to identify the actual file. Let's take a look at the full implementation which will copy each directory's "index.tpl" to "index.html":</p> <pre><code>def copyTemplates(topdir): for subdir in subdirs(topdir): tpl = subdir.child("index.tpl") if tpl.exists(): tpl.copyTo(subdir.child("index.html")) </code></pre> <p>The "subdirs" function above can work on any <code>FilePath</code>-like object. Which means, among other things, <code>ZipPath</code> objects. Unfortunately <code>ZipPath</code> is read-only right now, but it could be extended to support writing.</p> <p>You can also pass your own objects for testing purposes. In order to test the os.path-using APIs suggested here, you have to monkey with imported names and implicit dependencies and generally perform black magic to get your tests to work. With FilePath, you do something like this:</p> <pre><code>class MyFakePath: def child(self, name): "Return an appropriate child object" def walk(self): "Return an iterable of MyFakePath objects" def exists(self): "Return true or false, as appropriate to the test" def isdir(self): "Return true or false, as appropriate to the test" ... subdirs(MyFakePath(...)) </code></pre> http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/769428#769428 3 Answer by Glyph for What is the best comment in source code you have ever encountered? Glyph 2009-04-20T18:04:36Z 2009-04-20T18:04:36Z <p>My personal favorite is <a href="http://twistedmatrix.com/trac/browser/tags/releases/twisted-8.2.0/twisted/python/components.py#L154" rel="nofollow">documentation in limerick form</a>:</p> <pre><code> Subclassing made Zope and TR much harder to work with by far. So before you inherit, be sure to declare it Adapter, not PyObject* </code></pre> <p>This probably spoils the joke a bit, but since it's a bit obscure I'll explain:</p> <p>"TR" here refers to "Twisted Reality". Zope 2 and the original <code>twisted.reality</code> package made extensive and unfortunate use of multiple inheritance, which could make it difficult to understand what was going on when you saw a method call. Zope 3, Twisted itself, and <code>twisted.reality</code>'s successors (including the most recent, <a href="http://divmod.org/trac/wiki/DivmodImaginary" rel="nofollow">Imaginary</a>) instead generally favor component composition.</p> http://stackoverflow.com/questions/800212/os-x-gui-api-clarification/803797#803797 Comment by Glyph on os x gui api clarification Glyph 2009-10-18T21:09:34Z 2009-10-18T21:09:34Z Clearly this is possible, given the existence of commercial tools like <a href="http://www.irradiatedsoftware.com/sizeup/" rel="nofollow">irradiatedsoftware.com/sizeup</a>. What are the window server APIs like? http://stackoverflow.com/questions/93415/maximizing-an-emacs-frame-to-just-one-monitor-with-elisp/102256#102256 Comment by Glyph on Maximizing an Emacs frame to just one monitor with elisp Glyph 2009-10-14T15:37:41Z 2009-10-14T15:37:41Z Unfortunately this doesn't seem to work with <a href="http://emacsformacosx.com/" rel="nofollow">emacsformacosx.com</a> - any known workaround for the 'ns' window system? http://stackoverflow.com/questions/1404066/good-way-to-write-a-lightweight-client-function-to-be-imported-twisted-python/1404238#1404238 Comment by Glyph on Good way to write a lightweight client function to be imported Twisted Python Glyph 2009-09-11T00:17:10Z 2009-09-11T00:17:10Z More than the speed issue, there's the issue of what happens when you call 'reactor.run()'. In the best case it would cause your entire program to freeze, but if you have other stuff going on in the background, what should happen to it? Should it try to keep going on inside the inner call to &quot;run&quot; as well? It turns out that this can be the source of a lot of hugely surprising bugs, even if Twisted worked exactly how you would expect it to here. http://stackoverflow.com/questions/1404066/good-way-to-write-a-lightweight-client-function-to-be-imported-twisted-python/1404238#1404238 Comment by Glyph on Good way to write a lightweight client function to be imported Twisted Python Glyph 2009-09-11T00:15:44Z 2009-09-11T00:15:44Z Deferreds are not about things taking a <i>long</i> time, they're about taking a <i>variable</i> amount of time. If you need to make 1000 requests, most of them will take a very short time (although probably not quite as little as a millionth of a second; more like a few thousandths) but ten of them will take 25 seconds because of some weird network congestion issue you can't predict. If you sit there and wait for every request to come back, your program will be slow and freeze up all the time, even if &quot;most of the time&quot; the call is fast. http://stackoverflow.com/questions/1104587/twisted-sometimes-throws-seemingly-incomplete-maximum-recursion-depth-exceeded Comment by Glyph on Twisted sometimes throws (seemingly incomplete) 'maximum recursion depth exceeded' RuntimeError Glyph 2009-07-10T10:28:37Z 2009-07-10T10:28:37Z Just FYI: that &quot;_&quot; in front of _makeGetterFactory means &quot;don't call this&quot;. It's a private implementation detail. It will break without warning if you install a new version of Twisted. http://stackoverflow.com/questions/1095543/get-name-of-calling-functions-module-in-python/1095621#1095621 Comment by Glyph on Get __name__ of calling function's module in Python Glyph 2009-07-09T11:24:05Z 2009-07-09T11:24:05Z Be aware that this will interact strangely with import hooks, won't work on ironpython, and may behave in surprising ways on jython. It's best if you can avoid magic like this. http://stackoverflow.com/questions/1096216/override-namespace-in-python/1097237#1097237 Comment by Glyph on Override namespace in python Glyph 2009-07-09T11:22:33Z 2009-07-09T11:22:33Z You may want to set the module's <code>&#95;&#95;name&#95;&#95;</code> attribute as well, so that code inspecting it will see it as the same as code which looks at <code>sys.modules</code>. http://stackoverflow.com/questions/1097974/how-to-flush-a-socket-in-python/1098216#1098216 Comment by Glyph on How to flush a socket in python? Glyph 2009-07-09T11:20:19Z 2009-07-09T11:20:19Z Personally, I would call what you're doing &quot;emptying&quot; the socket. Although it does seem strange to me why you would want to do this - somebody sent you that data for a reason, why are you throwing it all away without processing it? :) http://stackoverflow.com/questions/1097974/how-to-flush-a-socket-in-python Comment by Glyph on How to flush a socket in python? Glyph 2009-07-09T11:19:33Z 2009-07-09T11:19:33Z Have you considered using Twisted for your program instead? If you did, you'd never need to do anything like this. Twisted will immediately pull all the data out of the socket and deliver it to you whenever any arrives, so you don't need to mess about with ugly details like the select() problem described by Thomas's answer below. http://stackoverflow.com/questions/1087227/validate-ssl-certificates-with-python/1088224#1088224 Comment by Glyph on Validate SSL certificates with Python Glyph 2009-07-09T10:31:20Z 2009-07-09T10:31:20Z &quot;self.hostname&quot; in that case is not &quot;localhost&quot;; note the <code>URLPath(url).netloc</code>: that means the host part of the URL passed in to secureGet. In other words, it's checking that the commonName of the subject is the same as the one being requested by the caller. http://stackoverflow.com/questions/1087227/validate-ssl-certificates-with-python Comment by Glyph on Validate SSL certificates with Python Glyph 2009-07-06T14:56:59Z 2009-07-06T14:56:59Z Your comment about Twisted is incorrect: Twisted uses pyopenssl, not Python's built-in SSL support. While it doesn't validate HTTPS certificates by default in its HTTP client, you can use the &quot;contextFactory&quot; argument to getPage and downloadPage to construct a validating context factory. By contrast, to my knowledge there's no way that the built-in &quot;ssl&quot; module can be convinced to do certificate validation. http://stackoverflow.com/questions/1058300/how-to-add-hooks-in-twisted-web-or-twisted-web2 Comment by Glyph on How to add hooks in twisted.web (or twisted.web2)? Glyph 2009-07-06T14:42:06Z 2009-07-06T14:42:06Z Can you provide some background on why you'd <i>want</i> to do this? I have read the documentation for web.py's add_processor, but it's rather thin. There are a couple of different points in twisted.web where you could stick a function that would be called. Which one you want depends largely on what you intend to do with it. http://stackoverflow.com/questions/460144/python-twisted-tcp-packet-fragmentation/460224#460224 Comment by Glyph on Python/Twisted - TCP packet fragmentation? Glyph 2009-06-30T23:06:08Z 2009-06-30T23:06:08Z Jesse, I don't think you understand this answer properly. First of all, Twisted is in Python, so it's highly unlikely that you'll ever have a buffer overflow. Second, delimited input is far more likely to cause a buffer overflow than length-prefixed input; see, for example, the security section of <a href="http://cr.yp.to/proto/netstrings.txt" rel="nofollow">cr.yp.to/proto/netstrings.txt</a> or just about any book on C network programming. The idea here isn't that you &quot;trust&quot; the client to tell you how much data it's going to send - it's that the client tells you how many bytes (of the arbitrary number it sends) constitute one message. http://stackoverflow.com/questions/1047991/php-sockets-or-python-perl-bash-sockets Comment by Glyph on PHP Sockets or Python, Perl, Bash Sockets? Glyph 2009-06-28T18:13:18Z 2009-06-28T18:13:18Z The majority of shared hosting servers will forcibly terminate any process which has been running too long, and a socket server needs to run in the background to accept connections. Your request is basically impossible, since it goes against the whole shared-hosting business model. http://stackoverflow.com/questions/1054997/i-keep-getting-invalid-syntax-errors-in-python-but Comment by Glyph on I keep getting invalid syntax errors in Python, but... Glyph 2009-06-28T17:55:41Z 2009-06-28T17:55:41Z Include a short example program, yourprogram.py, and a copy of the <i>entire</i> output of 'python yourprogram.py'. Without this, nobody can do anything but guess.