Lines Matching refs:GLOBAL_VAR
3 GLOBAL_VAR = None
551 global GLOBAL_VAR
553 global GLOBAL_VAR
554 [GLOBAL_VAR := sentinel for _ in range(1)]
555 self.assertEqual(GLOBAL_VAR, sentinel)
558 self.assertEqual(GLOBAL_VAR, sentinel)
560 GLOBAL_VAR = None
565 GLOBAL_VAR = None
566 [GLOBAL_VAR := sentinel for _ in range(1)]
567 self.assertEqual(GLOBAL_VAR, sentinel)
569 self.assertEqual(GLOBAL_VAR, None)