User roder - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T22:51:32Zhttp://stackoverflow.com/feeds/user/97231http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1331561/using-heapys-memory-profile-browser-with-twisted-web2Using Heapy's Memory Profile Browser with Twisted.webroder2009-08-25T23:22:03Z2009-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-type1How can I create bound methods with type()?roder2009-07-24T15:16:30Z2009-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 "<input>", line 1, in <module>
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-programmatically4How can I report the API of a class programmatically?roder2009-07-04T02:59:38Z2009-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#10130835Answer by roder for Have buildbot poll a git repository for new commits?roder2009-06-18T14:47:47Z2009-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-for4Is there a value in using map() vs for?roder2009-05-17T19:45:43Z2009-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#8753210Answer by roder for Simple data storing in Pythonroder2009-05-17T19:41:06Z2009-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#875344Comment by roder on Is there a value in using map() vs for?roder2009-05-18T02:14:03Z2009-05-18T02:14:03ZThanks Everyone!