Remove ObjectID aliasing from the API. (#406)

* Remove ObjectID aliasing from the API.

* Update documentation to remove aliasing.
This commit is contained in:
Robert Nishihara
2016-09-03 19:34:45 -07:00
committed by Philipp Moritz
parent efb61ca9c7
commit 81f40774a7
7 changed files with 13 additions and 177 deletions
-14
View File
@@ -8,20 +8,6 @@ import numpy as np
def handle_int(a, b):
return a + 1, b + 1
# Test aliasing
@ray.remote
def test_alias_f():
return np.ones([3, 4, 5])
@ray.remote
def test_alias_g():
return test_alias_f.remote()
@ray.remote
def test_alias_h():
return test_alias_g.remote()
# Test timing
@ray.remote