User roder - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T22:51:32Z http://stackoverflow.com/feeds/user/97231 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1331561/using-heapys-memory-profile-browser-with-twisted-web 2 Using Heapy's Memory Profile Browser with Twisted.web roder 2009-08-25T23:22:03Z 2009-09-24T15:18:55Z <p>I am trying to profile twisted python code with <a href="http://stackoverflow.com/questions/110259/python-memory-profiler">Heapy</a>. For example (pseudo code):</p> <pre><code>from twisted.web import resource, server from twisted.internet import reactor from guppy import hpy class RootResource(resource.Resource): render_GET(self, path, request): return "Hello World" if __name__ == '__main__': h = hpy() port = 8080 site = server.Site(RootResource(mq)) reactor.listenTCP(port, site) reactor.run() </code></pre> <p>What do I need to do to view Heapy profile results in the <a href="http://guppy-pe.sourceforge.net/pbscreen.jpg" rel="nofollow">profile browser</a>?</p> http://stackoverflow.com/questions/1178337/how-can-i-create-bound-methods-with-type 1 How can I create bound methods with type()? roder 2009-07-24T15:16:30Z 2009-07-24T15:21:28Z <p>I am dynamically generating a function and assigning it to a class. This is a simple/minimal example of what I am trying to achieve:</p> <pre><code>def echo(obj): print obj.hello class Foo(object): hello = "Hello World" spam = type("Spam", (Foo, ), {"echo":echo}) spam.echo() </code></pre> <p>Results in this error</p> <pre><code>Traceback (most recent call last): File "&lt;input&gt;", line 1, in &lt;module&gt; TypeError: unbound method echo() must be called with Spam instance as first argument (got nothing instead) </code></pre> <p>I know if I used the <code>@staticmethod</code> decorator that I can pass <code>spam</code> in as a parameter to echo, but that is not possible for me in my use case.</p> <p>How would I get the <code>echo</code> function to be bound to <code>Spam</code> and access <code>self</code>? Is it possible at all?</p> http://stackoverflow.com/questions/1081392/how-can-i-report-the-api-of-a-class-programmatically 4 How can I report the API of a class programmatically? roder 2009-07-04T02:59:38Z 2009-07-04T03:34:01Z <p>Dear stackoverflow-</p> <p>My goal is to parse a class and return a data-structure (object, dictionary, etc) that is descriptive of the methods and the related parameters contained within the class. Bonus points for types and returns...</p> <p>Requirements: Must be Python</p> <p>For example, the below class:</p> <pre><code>class Foo: def bar(hello=None): return hello def baz(world=None): return baz </code></pre> <p>Would be parsed to return</p> <pre><code>result = {class:"Foo", methods: [{name: "bar", params:["hello"]}, {name: "baz", params:["world"]}]} </code></pre> <p>So that's just an example of what I'm thinking... I'm really flexible on the data-structure.</p> <p>Any ideas/examples on how to achieve this?</p> http://stackoverflow.com/questions/645430/have-buildbot-poll-a-git-repository-for-new-commits/1013083#1013083 5 Answer by roder for Have buildbot poll a git repository for new commits? roder 2009-06-18T14:47:47Z 2009-06-18T14:47:47Z <p>Better late than never... I just blogged about GitHub service hook I wrote about for BuildBot.</p> <p>You can find it here: <a href="http://app.arat.us/blog/?p=136" rel="nofollow">http://app.arat.us/blog/?p=136</a></p> http://stackoverflow.com/questions/875337/is-there-a-value-in-using-map-vs-for 4 Is there a value in using map() vs for? roder 2009-05-17T19:45:43Z 2009-05-18T22:02:03Z <p>Does map() iterate through the list like "for" would? Is there a value in using map vs for?</p> <p>If so, right now my code looks like this:</p> <pre><code>for item in items: item.my_func() </code></pre> <p>If it makes sense, I would like to make it map(). Is that possible? What is an example like?</p> http://stackoverflow.com/questions/875228/simple-data-storing-in-python/875321#875321 0 Answer by roder for Simple data storing in Python roder 2009-05-17T19:41:06Z 2009-05-17T19:41:06Z <p>I don't have enough reputation points to up vote Jeremy, but pickle is what you're looking for.</p> http://stackoverflow.com/questions/875337/is-there-a-value-in-using-map-vs-for/875344#875344 Comment by roder on Is there a value in using map() vs for? roder 2009-05-18T02:14:03Z 2009-05-18T02:14:03Z Thanks Everyone!