(self)
| 255 | |
| 256 | |
| 257 | def test_list_literal(self): |
| 258 | logger.info( 'Test list literal' ) |
| 259 | a = np.arange(3) |
| 260 | out = ne3.NumExpr('a < [2,2,2]')() |
| 261 | npt.assert_array_equal( out, a < np.array([2,2,2]) ) |
| 262 | |
| 263 | def test_casting(self): |
| 264 | logging.info( "Test safe, unsafe, and func helper casting") |
nothing calls this directly
no outgoing calls
no test coverage detected