Browse Source

auto commit

master
jfinn 2 years ago
parent
commit
e32e38a7ab
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      wsps/tasks_loop.py

+ 4
- 4
wsps/tasks_loop.py View File

201
 		self.files = {}
201
 		self.files = {}
202
 		z="ABC"
202
 		z="ABC"
203
 		self.scopes = {
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
 		# "dflt_scope":{"globals":globals(),"locals":{}}
208
 		# "dflt_scope":{"globals":globals(),"locals":{}}
209
 		}
209
 		}
210
 		self.scopes['current_scope'] = self.scopes['dflt_scope_zloc']
210
 		self.scopes['current_scope'] = self.scopes['dflt_scope_zloc']

Loading…
Cancel
Save