|
@@ -146,7 +146,7 @@ Mixins.AclTaskMixin = AclTaskMixin
|
146
|
146
|
|
147
|
147
|
|
148
|
148
|
# GCLMixin
|
149
|
|
-class globCL():
|
|
149
|
+class globCL(GCLMixin):
|
150
|
150
|
def __init__(self,*a,**kw):
|
151
|
151
|
# for now we are not going to do any weird class stuff
|
152
|
152
|
self.rconn = connect_redis()
|
|
@@ -230,7 +230,7 @@ class globCL():
|
230
|
230
|
|
231
|
231
|
|
232
|
232
|
# RldManMixin
|
233
|
|
-class RldMan():
|
|
233
|
+class RldMan(RldManMixin):
|
234
|
234
|
def __init__(self,*a,**kw):
|
235
|
235
|
self.files = {}
|
236
|
236
|
z="ABC"
|
|
@@ -242,14 +242,11 @@ class RldMan():
|
242
|
242
|
# "dflt_scope":{"globals":globals(),"locals":{}}
|
243
|
243
|
}
|
244
|
244
|
self.scopes['current_scope'] = self.scopes['dflt_scope_zloc']
|
245
|
|
- self.scope_opt = ""
|
|
245
|
+ self.scope_opt = "locals"
|
246
|
246
|
self.print_tb = 0
|
247
|
|
- # self.dflt_scope = {"globals":globals(),"locals":locals()}
|
248
|
|
- # self.dflt_scope2 = {"globals":copy.copy(globals()),"locals":copy.copy(locals())}
|
249
|
247
|
|
250
|
248
|
base_path = "/usr/games/repos/ign4/py_rld/djc/rdir1/"
|
251
|
249
|
|
252
|
|
- # [base_path+"r0.py",{"ftxt":"zz2"}],
|
253
|
250
|
|
254
|
251
|
file_list = [
|
255
|
252
|
base_path+"i0.py",
|