Tagged Questions
The contrived-example tag has no wiki summary.
11
votes
6answers
5k views
Nested try statements in python?
Is there a nicer way of doing the following:
try:
a.method1()
except AttributeError:
try:
a.method2()
except AttributeError:
try:
a.method3()
except ...
3
votes
3answers
246 views
How to correctly allocate memory for a structure in a function to return its value for later use and how to cast a structure into a pointer?
I'm currently self-studying C for mastering an university project. In that project we have several signatures given that we need to implement for solving our task. After several hours of trying to ...
2
votes
1answer
154 views
Performance Considerations Using Multiple Layers of Generators in Python?
Are there any performance considerations for using a lot of generators chained together, as opposed to just a single generator.
For example:
def A(self, items):
for item in self.AB(items):
...