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 2016/06/16 19:47:56 UTC

tinkerpop git commit: builtInRange no longer needed given the new Enum model.

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1278 f68dbdfdc -> 3dc16ac53


builtInRange no longer needed given the new Enum model.


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

Branch: refs/heads/TINKERPOP-1278
Commit: 3dc16ac5357c8d80185236e45f6f8f519d55c8d4
Parents: f68dbdf
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Thu Jun 16 13:47:52 2016 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Thu Jun 16 13:47:52 2016 -0600

----------------------------------------------------------------------
 .../apache/tinkerpop/gremlin/python/GremlinPythonGenerator.groovy   | 1 -
 gremlin-variant/src/main/jython/gremlin_python/gremlin_python.py    | 1 -
 2 files changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/3dc16ac5/gremlin-variant/src/main/groovy/org/apache/tinkerpop/gremlin/python/GremlinPythonGenerator.groovy
----------------------------------------------------------------------
diff --git a/gremlin-variant/src/main/groovy/org/apache/tinkerpop/gremlin/python/GremlinPythonGenerator.groovy b/gremlin-variant/src/main/groovy/org/apache/tinkerpop/gremlin/python/GremlinPythonGenerator.groovy
index 9289d99..6e865ad 100644
--- a/gremlin-variant/src/main/groovy/org/apache/tinkerpop/gremlin/python/GremlinPythonGenerator.groovy
+++ b/gremlin-variant/src/main/groovy/org/apache/tinkerpop/gremlin/python/GremlinPythonGenerator.groovy
@@ -77,7 +77,6 @@ under the License.
         pythonClass.append("statics = OrderedDict()\n\n")
         pythonClass.append("""
 globalTranslator = None
-builtInRange = range
 """).append("\n\n");
 
 //////////////////////////

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/3dc16ac5/gremlin-variant/src/main/jython/gremlin_python/gremlin_python.py
----------------------------------------------------------------------
diff --git a/gremlin-variant/src/main/jython/gremlin_python/gremlin_python.py b/gremlin-variant/src/main/jython/gremlin_python/gremlin_python.py
index 23d53e6..438efbf 100644
--- a/gremlin-variant/src/main/jython/gremlin_python/gremlin_python.py
+++ b/gremlin-variant/src/main/jython/gremlin_python/gremlin_python.py
@@ -22,7 +22,6 @@ statics = OrderedDict()
 
 
 globalTranslator = None
-builtInRange = range
 
 
 class PythonGraphTraversalSource(object):