You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2017/07/14 17:22:53 UTC

tinkerpop git commit: pushed updated graph_traversal.py from template construction.

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1729 e0de2b8a8 -> e00902b4a


pushed updated graph_traversal.py from template construction.


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/e00902b4
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/e00902b4
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/e00902b4

Branch: refs/heads/TINKERPOP-1729
Commit: e00902b4ab75d5247402876f298f69462883024b
Parents: e0de2b8
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Fri Jul 14 11:22:49 2017 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Fri Jul 14 11:22:49 2017 -0600

----------------------------------------------------------------------
 .../jython/gremlin_python/process/graph_traversal.py    | 12 ------------
 1 file changed, 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/e00902b4/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 fe8d2de..ea4afc6 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
@@ -416,10 +416,6 @@ class GraphTraversal(Traversal):
         self.bytecode.add_step("select", *args)
         return self
 
-    def selectV3d2(self, *args):
-        self.bytecode.add_step("selectV3d2", *args)
-        return self
-
     def sideEffect(self, *args):
         self.bytecode.add_step("sideEffect", *args)
         return self
@@ -780,10 +776,6 @@ class __(object):
         return cls.graph_traversal(None, None, Bytecode()).select(*args)
 
     @classmethod
-    def selectV3d2(cls, *args):
-        return cls.graph_traversal(None, None, Bytecode()).selectV3d2(*args)
-
-    @classmethod
     def sideEffect(cls, *args):
         return cls.graph_traversal(None, None, Bytecode()).sideEffect(*args)
 
@@ -1133,10 +1125,6 @@ def select(*args):
     return __.select(*args)
 statics.add_static('select', select)
 
-def selectV3d2(*args):
-    return __.selectV3d2(*args)
-statics.add_static('selectV3d2', selectV3d2)
-
 def sideEffect(*args):
     return __.sideEffect(*args)
 statics.add_static('sideEffect', sideEffect)