Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B0D77200C25 for ; Fri, 24 Feb 2017 15:51:55 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id ADE0C160B69; Fri, 24 Feb 2017 14:51:55 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 03F30160B5C for ; Fri, 24 Feb 2017 15:51:54 +0100 (CET) Received: (qmail 63041 invoked by uid 500); 24 Feb 2017 14:51:54 -0000 Mailing-List: contact commits-help@tinkerpop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tinkerpop.apache.org Delivered-To: mailing list commits@tinkerpop.apache.org Received: (qmail 63032 invoked by uid 99); 24 Feb 2017 14:51:54 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Feb 2017 14:51:54 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 194BEDFD9E; Fri, 24 Feb 2017 14:51:54 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: spmallette@apache.org To: commits@tinkerpop.apache.org Message-Id: <7dfd1516e1524f81ab2636f21541773b@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: tinkerpop git commit: traversal.py regenerated itself CTR Date: Fri, 24 Feb 2017 14:51:54 +0000 (UTC) archived-at: Fri, 24 Feb 2017 14:51:55 -0000 Repository: tinkerpop Updated Branches: refs/heads/tp32 82147d670 -> fe2f9ba6d traversal.py regenerated itself CTR Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/fe2f9ba6 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/fe2f9ba6 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/fe2f9ba6 Branch: refs/heads/tp32 Commit: fe2f9ba6d0962de4d3bb6ece5f62a95e250cecc9 Parents: 82147d6 Author: Stephen Mallette Authored: Fri Feb 24 09:47:44 2017 -0500 Committer: Stephen Mallette Committed: Fri Feb 24 09:47:44 2017 -0500 ---------------------------------------------------------------------- .../src/main/jython/gremlin_python/process/traversal.py | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/fe2f9ba6/gremlin-python/src/main/jython/gremlin_python/process/traversal.py ---------------------------------------------------------------------- diff --git a/gremlin-python/src/main/jython/gremlin_python/process/traversal.py b/gremlin-python/src/main/jython/gremlin_python/process/traversal.py index 07afeac..bb227f3 100644 --- a/gremlin-python/src/main/jython/gremlin_python/process/traversal.py +++ b/gremlin-python/src/main/jython/gremlin_python/process/traversal.py @@ -118,6 +118,13 @@ statics.add_static('OUT', Direction.OUT) statics.add_static('IN', Direction.IN) statics.add_static('BOTH', Direction.BOTH) +GraphSONVersion = Enum('GraphSONVersion', 'V1_0 V2_0') +statics.add_static('V1_0', GraphSONVersion.V1_0) +statics.add_static('V2_0', GraphSONVersion.V2_0) + +GryoVersion = Enum('GryoVersion', 'V1_0') +statics.add_static('V1_0', GryoVersion.V1_0) + Operator = Enum('Operator', 'addAll and_ assign div max min minus mult or_ sum sumLong') statics.add_static('sum', Operator.sum) statics.add_static('minus', Operator.minus)