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/10 14:43:06 UTC

tinkerpop git commit: updated graph_traversal.py accordingly.

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1291 2b4ba78a5 -> 214e4e2da


updated graph_traversal.py accordingly.


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

Branch: refs/heads/TINKERPOP-1291
Commit: 214e4e2da782353eed9811870ab37cba4ab9d577
Parents: 2b4ba78
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Mon Jul 10 08:43:03 2017 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Mon Jul 10 08:43:03 2017 -0600

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


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/214e4e2d/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..3171876 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
@@ -320,14 +320,6 @@ class GraphTraversal(Traversal):
         self.bytecode.add_step("map", *args)
         return self
 
-    def mapKeys(self, *args):
-        self.bytecode.add_step("mapKeys", *args)
-        return self
-
-    def mapValues(self, *args):
-        self.bytecode.add_step("mapValues", *args)
-        return self
-
     def match(self, *args):
         self.bytecode.add_step("match", *args)
         return self
@@ -724,14 +716,6 @@ class __(object):
         return cls.graph_traversal(None, None, Bytecode()).map(*args)
 
     @classmethod
-    def mapKeys(cls, *args):
-        return cls.graph_traversal(None, None, Bytecode()).mapKeys(*args)
-
-    @classmethod
-    def mapValues(cls, *args):
-        return cls.graph_traversal(None, None, Bytecode()).mapValues(*args)
-
-    @classmethod
     def match(cls, *args):
         return cls.graph_traversal(None, None, Bytecode()).match(*args)
 
@@ -1097,14 +1081,6 @@ def map(*args):
     return __.map(*args)
 statics.add_static('map', map)
 
-def mapKeys(*args):
-    return __.mapKeys(*args)
-statics.add_static('mapKeys', mapKeys)
-
-def mapValues(*args):
-    return __.mapValues(*args)
-statics.add_static('mapValues', mapValues)
-
 def match(*args):
     return __.match(*args)
 statics.add_static('match', match)