Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

get_result produces a dictionary that is shown differently in result_view1 and result_view2.

This will work, but code duplicates the two dictionary two times:

@view_config(route_name='result_view1',renderer='result_view1.mako')
def get_result(request):
    return {"a": 1, "b": 2}
@view_config(route_name="result_view2", renderer="result_view2.mako")
def get_result(request):
    return {"a": 1, "b": 2}

Is there any syntax that I can write get_result only once? Such as the following (I tried like this, but result_view1 won't work)

@view_config(route_name='result_view1',renderer='result_view1.mako')
@view_config(route_name="result_view2", renderer="result_view2.mako")
def get_result(request):
    return {"a": 1, "b": 2}
share|improve this question
This one just works... – Firegun Nov 16 '12 at 8:01
That syntax is totally valid. You'll have to paste tracebacks or extra code if something isn't working with it. – Michael Merickel Nov 16 '12 at 10:27
your comment "this one just works", meaning you solved the problem and should close the ticket? or what do you mean by your comment? – Michael Merickel Nov 16 '12 at 10:28

closed as not a real question by Firegun, Lev Levitsky, Michael Merickel, Marek Sebera, Graviton Nov 20 '12 at 6:12

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.