Every line of 'python copy list' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
245 def _deepcopy_list(x, memo): 246 y = [] 247 memo[id(x)] = y 248 for a in x: 249 y.append(deepcopy(a, memo)) 250 251 return y