Browse Source

auto commit

master
jfinn 2 years ago
parent
commit
d908d2f8a8
1 changed files with 3 additions and 6 deletions
  1. 3
    6
      wsps/tasks_loop.py

+ 3
- 6
wsps/tasks_loop.py View File

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

Loading…
Cancel
Save