Lines Matching full:nonlocal
369 Misuse of the nonlocal and global statement can lead to a few unique syntax errors.
382 ... nonlocal x
385 SyntaxError: name 'x' is used prior to nonlocal declaration
388 ... nonlocal x
391 SyntaxError: name 'x' is parameter and nonlocal
395 ... nonlocal x
398 SyntaxError: name 'x' is nonlocal and global
401 ... nonlocal x
404 SyntaxError: no binding for nonlocal 'x' found
407 >>> nonlocal x
410 SyntaxError: nonlocal declaration not allowed at module level
417 ## ... nonlocal x
420 ## SyntaxWarning: name 'x' is assigned to before nonlocal declaration
424 ## ... nonlocal x
427 ## SyntaxWarning: name 'x' is assigned to before nonlocal declaration
432 ... nonlocal __x
435 SyntaxError: no binding for nonlocal '_A__x' found