mirror of
https://github.com/wassname/ray.git
synced 2026-07-30 12:30:30 +08:00
int and long should be treated similarly (#220)
This commit is contained in:
+1
-1
@@ -12,7 +12,7 @@ import test_functions
|
||||
import ray.array.remote as ra
|
||||
import ray.array.distributed as da
|
||||
|
||||
RAY_TEST_OBJECTS = [[1, "hello", 3.0], 42, "hello world", 42.0,
|
||||
RAY_TEST_OBJECTS = [[1, "hello", 3.0], 42, 43L, "hello world", 42.0, 1L << 62,
|
||||
(1.0, "hi"), None, (None, None), ("hello", None),
|
||||
True, False, (True, False),
|
||||
{True: "hello", False: "world"},
|
||||
|
||||
Reference in New Issue
Block a user