(a)
| 27 | return a |
| 28 | |
| 29 | def base64_encode_array(a): |
| 30 | # return the base64 encoded array |
| 31 | return base64.b64encode(a) |
| 32 | |
| 33 | def base64_decode_array(a, dtype): |
| 34 | # decode and return the array |
no outgoing calls
no test coverage detected
searching dependent graphs…