(thing)
| 228 | return d |
| 229 | |
| 230 | def b64_to_obj(thing): |
| 231 | try: |
| 232 | a = base64.b64decode(thing) |
| 233 | b = pickle.loads(a) |
| 234 | return b |
| 235 | except: |
| 236 | return {} |
| 237 | |
| 238 | def run_and_get_stdout(command, pipe_command=None): |
| 239 | if not pipe_command: |
no outgoing calls
no test coverage detected
searching dependent graphs…