Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odgovori
5592 Prikazi

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?

Avatar
Opusti
Best Answer

Because {} is mutable and None is immutable.

Mutable default values are awkward: if you change the value in you function it will also change the *default* value for all later calls of your function.

See https://doc.odoo.com/contribute/15_guidelines/coding_guidelines_framework/#the-infamous-context

The lengthy discussion about that here: https://bugs.launchpad.net/openobject-addons/+bug/525808

Avatar
Opusti
Best Answer

This notation in python mean that context is a optionnal arg of the function. If no context is given, context is equal to none.

Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
3
dec. 17
11932
1
jul. 25
1990
1
feb. 25
1278
0
jan. 24
4659
2
jan. 19
22095