| 1428 | """ |
| 1429 | |
| 1430 | class numpy_like: |
| 1431 | def __eq__(self, other): |
| 1432 | if type(other) is numpy_like: |
| 1433 | raise ValueError( |
| 1434 | "The truth value of an array " |
| 1435 | "with more than one element is ambiguous." |
| 1436 | ) |
| 1437 | |
| 1438 | def a(x): |
| 1439 | return b(numpy_like()) |
no outgoing calls