Comment 7 for bug 535642

Revision history for this message
Jay Vora (Serpent Consulting Services) (jayvora) wrote :

Hello,

It is possible that context may get no value(so context=None) or some value(context={} or dictionary with keyfrom called function.

At that time, if context is None won't help us.

Better we do like, 'if context is None or (not context):'.

Let me know your views.

Thanks.