graph_traversal.py update.
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/bbfd7a66 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/bbfd7a66 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/bbfd7a66 Branch: refs/heads/TINKERPOP-1682 Commit: bbfd7a663fd8ff04bc21d5253f0ca69a63ec7e27 Parents: 1e03453 Author: Marko A. Rodriguez <[email protected]> Authored: Mon Jul 10 08:26:53 2017 -0600 Committer: Marko A. Rodriguez <[email protected]> Committed: Mon Jul 10 08:26:53 2017 -0600 ---------------------------------------------------------------------- .../gremlin_python/process/graph_traversal.py | 24 -------------------- 1 file changed, 24 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/bbfd7a66/gremlin-python/src/main/jython/gremlin_python/process/graph_traversal.py ---------------------------------------------------------------------- diff --git a/gremlin-python/src/main/jython/gremlin_python/process/graph_traversal.py b/gremlin-python/src/main/jython/gremlin_python/process/graph_traversal.py index ec5797e..783924e 100644 --- a/gremlin-python/src/main/jython/gremlin_python/process/graph_traversal.py +++ b/gremlin-python/src/main/jython/gremlin_python/process/graph_traversal.py @@ -128,14 +128,6 @@ class GraphTraversal(Traversal): self.bytecode.add_step("addE", *args) return self - def addInE(self, *args): - self.bytecode.add_step("addInE", *args) - return self - - def addOutE(self, *args): - self.bytecode.add_step("addOutE", *args) - return self - def addV(self, *args): self.bytecode.add_step("addV", *args) return self @@ -540,14 +532,6 @@ class __(object): return cls.graph_traversal(None, None, Bytecode()).addE(*args) @classmethod - def addInE(cls, *args): - return cls.graph_traversal(None, None, Bytecode()).addInE(*args) - - @classmethod - def addOutE(cls, *args): - return cls.graph_traversal(None, None, Bytecode()).addOutE(*args) - - @classmethod def addV(cls, *args): return cls.graph_traversal(None, None, Bytecode()).addV(*args) @@ -913,14 +897,6 @@ def addE(*args): return __.addE(*args) statics.add_static('addE', addE) -def addInE(*args): - return __.addInE(*args) -statics.add_static('addInE', addInE) - -def addOutE(*args): - return __.addOutE(*args) -statics.add_static('addOutE', addOutE) - def addV(*args): return __.addV(*args) statics.add_static('addV', addV)
