Search Results

4
votes
8answers
354 views

Is there a value in using map() vs for?

Does map() iterate through the list like "for" would? Is there a value in using map vs for? If so, right now my code looks like this: for item in items: item.my_func() …
4
votes
1answer
93 views

How can I report the API of a class programmatically?

Dear stackoverflow- 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 clas …
1
vote
1answer
50 views

How can I create bound methods with type()?

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: def echo(obj): print obj.hello class Foo(ob …
2
votes
1answer
104 views

Using Heapy’s Memory Profile Browser with Twisted.web

I am trying to profile twisted python code with Heapy. For example (pseudo code): from twisted.web im …
0
votes

Simple data storing in Python

I don't have enough reputation points to up vote Jeremy, but pickle is what you're looking for. …