|
@@ -201,10 +201,10 @@ class RldMan():
|
201
|
201
|
self.files = {}
|
202
|
202
|
z="ABC"
|
203
|
203
|
self.scopes = {
|
204
|
|
- "dflt_scope":{"globals":globals(),"locals":locals()}
|
205
|
|
- "dflt_scope_zloc":{"globals":globals(),"locals":{}}
|
206
|
|
- "dflt_scope_gscope":{"globals":globals(),"locals":{}}
|
207
|
|
- "dflt_scope_copy": {"globals":copy.copy(globals()),"locals":copy.copy(locals())}
|
|
204
|
+ "dflt_scope":{"globals":globals(),"locals":locals()},
|
|
205
|
+ "dflt_scope_zloc":{"globals":globals(),"locals":{}},
|
|
206
|
+ "dflt_scope_gscope":{"globals":globals(),"locals":{}},
|
|
207
|
+ "dflt_scope_copy": {"globals":copy.copy(globals()),"locals":copy.copy(locals())},
|
208
|
208
|
# "dflt_scope":{"globals":globals(),"locals":{}}
|
209
|
209
|
}
|
210
|
210
|
self.scopes['current_scope'] = self.scopes['dflt_scope_zloc']
|