Ce produit n'est pas pris en charge par le site Datadog que vous avez sélectionné. ().
Cette page n'est pas encore disponible en français, sa traduction est en cours. Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.
Developers should not be setting a default argument to an empty list. Instead, use None and check if the value is defined. Using a default list can cause unwanted behavior as the value of the argument is only evaluated once when the function is defined, not when it is run. Because of this, each function call will reference the same underlying memory when the default value is used, which can lead to unwanted behavior.
defnewFunction(arg1,arg2:int,arg3=[],arg4:MyType=[]):# do not use an empty list as a default parameterarg3.append(arg2)arg4.append(arg1)print(arg3,arg4)newFunction('a',1)newFunction('b',2)newFunction('c',3)# Will print:# [1] ['a']# [1, 2] ['a', 'b']# [1, 2, 3] ['a', 'b', 'c']
Compliant Code Examples
defnewFunction(arg1,arg2:int,arg3=None,arg4=None):# do not use an empty list as a default parameterifarg3isNone:arg3=[]ifarg4isNone:arg4=[]arg3.append(arg2)arg4.append(arg1)print(arg3,arg4)newFunction('a',1)newFunction('b',2)newFunction('c',3)# Will print:# [1] ['a']# [2] ['b']# [3] ['c']
1
2
rulesets:- python-security # Rules to enforce Python security.
Request a personalized demo
Commencer avec Datadog
Datadog Docs AIYour use of this AI-powered assistant is subject to our Privacy Policy. Please do not submit sensitive or personal information.