blob: 3166260583bf13c8c33632dc5a0870464b440103 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
"""test access to undefined variables"""
__revision__ = '$Id:'
DEFINED = 1
if DEFINED != 1:
if DEFINED in (unknown, DEFINED):
DEFINED += 1
def in_method(var):
"""method doc"""
var = nomoreknown
assert var
DEFINED = {DEFINED:__revision__}
DEFINED[__revision__] = OTHER = 'move this is astng test'
OTHER += '$'
def bad_default(var, default=unknown2):
"""function with defaut arg's value set to an unexistant name"""
print var, default
print xxxx
print xxxx #see story #1000
|