My question is bit pythonic. but I am curious to know the answer.
I have seen in method Odoo is passing context=None. like
def create(self, cr, uid, vals, context=None):
if not context: context = {}
'''
code
'''
Why they have not used context={}? like
def create(self, cr, uid, vals, context={}):
'''
code
'''
can anyone shade light on it?