(p)
| 1340 | 'OpCb', ['apply_ok', 'apply_err', 'save', 'restore_ok']) |
| 1341 | |
| 1342 | def stdout(p): |
| 1343 | try: |
| 1344 | pstdout = p.stdout.decode(ENCODING) |
| 1345 | except AttributeError: |
| 1346 | pstdout = p.stdout |
| 1347 | return pstdout |
| 1348 | |
| 1349 | def stderr(p): |
| 1350 | try: |
no outgoing calls
no test coverage detected