You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by da...@apache.org on 2017/01/30 18:00:34 UTC

[7/7] tinkerpop git commit: added author attribution for consistency

added author attribution for consistency


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

Branch: refs/heads/TINKERPOP-1599
Commit: 2e639b8a38511267351c80a3492eb98d0f893fea
Parents: cdbacc0
Author: davebshow <da...@gmail.com>
Authored: Sat Jan 28 13:47:03 2017 -0500
Committer: davebshow <da...@gmail.com>
Committed: Mon Jan 30 11:51:24 2017 -0500

----------------------------------------------------------------------
 gremlin-python/src/main/jython/gremlin_python/driver/client.py     | 2 ++
 gremlin-python/src/main/jython/gremlin_python/driver/connection.py | 2 ++
 .../main/jython/gremlin_python/driver/driver_remote_connection.py  | 2 ++
 gremlin-python/src/main/jython/gremlin_python/driver/protocol.py   | 2 ++
 gremlin-python/src/main/jython/gremlin_python/driver/request.py    | 2 ++
 gremlin-python/src/main/jython/gremlin_python/driver/resultset.py  | 2 ++
 gremlin-python/src/main/jython/gremlin_python/driver/serializer.py | 2 ++
 .../src/main/jython/gremlin_python/driver/tornado/transport.py     | 2 ++
 gremlin-python/src/main/jython/gremlin_python/driver/transport.py  | 2 ++
 9 files changed, 18 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2e639b8a/gremlin-python/src/main/jython/gremlin_python/driver/client.py
----------------------------------------------------------------------
diff --git a/gremlin-python/src/main/jython/gremlin_python/driver/client.py b/gremlin-python/src/main/jython/gremlin_python/driver/client.py
index 0c1ba6c..dec39bf 100644
--- a/gremlin-python/src/main/jython/gremlin_python/driver/client.py
+++ b/gremlin-python/src/main/jython/gremlin_python/driver/client.py
@@ -34,6 +34,8 @@ except ImportError:
     def cpu_count():
         return None
 
+__author__ = 'David M. Brown (davebshow@gmail.com)'
+
 
 class Client:
 

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2e639b8a/gremlin-python/src/main/jython/gremlin_python/driver/connection.py
----------------------------------------------------------------------
diff --git a/gremlin-python/src/main/jython/gremlin_python/driver/connection.py b/gremlin-python/src/main/jython/gremlin_python/driver/connection.py
index 44ca8a3..abc4545 100644
--- a/gremlin-python/src/main/jython/gremlin_python/driver/connection.py
+++ b/gremlin-python/src/main/jython/gremlin_python/driver/connection.py
@@ -22,6 +22,8 @@ from six.moves import queue
 
 from gremlin_python.driver import resultset
 
+__author__ = 'David M. Brown (davebshow@gmail.com)'
+
 
 class Connection:
 

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2e639b8a/gremlin-python/src/main/jython/gremlin_python/driver/driver_remote_connection.py
----------------------------------------------------------------------
diff --git a/gremlin-python/src/main/jython/gremlin_python/driver/driver_remote_connection.py b/gremlin-python/src/main/jython/gremlin_python/driver/driver_remote_connection.py
index 104c1f7..fb0e4ba 100644
--- a/gremlin-python/src/main/jython/gremlin_python/driver/driver_remote_connection.py
+++ b/gremlin-python/src/main/jython/gremlin_python/driver/driver_remote_connection.py
@@ -22,6 +22,8 @@ from gremlin_python.driver import client
 from gremlin_python.driver.remote_connection import (
     RemoteConnection, RemoteTraversal, RemoteTraversalSideEffects)
 
+__author__ = 'David M. Brown (davebshow@gmail.com)'
+
 
 class DriverRemoteConnection(RemoteConnection):
 

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2e639b8a/gremlin-python/src/main/jython/gremlin_python/driver/protocol.py
----------------------------------------------------------------------
diff --git a/gremlin-python/src/main/jython/gremlin_python/driver/protocol.py b/gremlin-python/src/main/jython/gremlin_python/driver/protocol.py
index df72bf7..f91a799 100644
--- a/gremlin-python/src/main/jython/gremlin_python/driver/protocol.py
+++ b/gremlin-python/src/main/jython/gremlin_python/driver/protocol.py
@@ -26,6 +26,8 @@ import six
 
 from gremlin_python.driver import serializer, request
 
+__author__ = 'David M. Brown (davebshow@gmail.com)'
+
 
 class GremlinServerError(Exception):
     pass

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2e639b8a/gremlin-python/src/main/jython/gremlin_python/driver/request.py
----------------------------------------------------------------------
diff --git a/gremlin-python/src/main/jython/gremlin_python/driver/request.py b/gremlin-python/src/main/jython/gremlin_python/driver/request.py
index 0545230..ac7b845 100644
--- a/gremlin-python/src/main/jython/gremlin_python/driver/request.py
+++ b/gremlin-python/src/main/jython/gremlin_python/driver/request.py
@@ -18,6 +18,8 @@ under the License.
 """
 import collections
 
+__author__ = 'David M. Brown (davebshow@gmail.com)'
+
 
 RequestMessage = collections.namedtuple(
     'RequestMessage', ['processor', 'op', 'args'])

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2e639b8a/gremlin-python/src/main/jython/gremlin_python/driver/resultset.py
----------------------------------------------------------------------
diff --git a/gremlin-python/src/main/jython/gremlin_python/driver/resultset.py b/gremlin-python/src/main/jython/gremlin_python/driver/resultset.py
index 01c1968..cfdca5b 100644
--- a/gremlin-python/src/main/jython/gremlin_python/driver/resultset.py
+++ b/gremlin-python/src/main/jython/gremlin_python/driver/resultset.py
@@ -18,6 +18,8 @@ under the License.
 """
 from concurrent.futures import Future
 
+__author__ = 'David M. Brown (davebshow@gmail.com)'
+
 
 class ResultSet:
 

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2e639b8a/gremlin-python/src/main/jython/gremlin_python/driver/serializer.py
----------------------------------------------------------------------
diff --git a/gremlin-python/src/main/jython/gremlin_python/driver/serializer.py b/gremlin-python/src/main/jython/gremlin_python/driver/serializer.py
index c39474b..a30cd38 100644
--- a/gremlin-python/src/main/jython/gremlin_python/driver/serializer.py
+++ b/gremlin-python/src/main/jython/gremlin_python/driver/serializer.py
@@ -23,6 +23,8 @@ except ImportError:
 
 from gremlin_python.structure.io import graphson
 
+__author__ = 'David M. Brown (davebshow@gmail.com)'
+
 
 class Processor:
     """Base class for OpProcessor serialization system."""

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2e639b8a/gremlin-python/src/main/jython/gremlin_python/driver/tornado/transport.py
----------------------------------------------------------------------
diff --git a/gremlin-python/src/main/jython/gremlin_python/driver/tornado/transport.py b/gremlin-python/src/main/jython/gremlin_python/driver/tornado/transport.py
index 2e511b1..cc218e9 100644
--- a/gremlin-python/src/main/jython/gremlin_python/driver/tornado/transport.py
+++ b/gremlin-python/src/main/jython/gremlin_python/driver/tornado/transport.py
@@ -21,6 +21,8 @@ from tornado import websocket
 
 from gremlin_python.driver.transport import AbstractBaseTransport
 
+__author__ = 'David M. Brown (davebshow@gmail.com)'
+
 
 class TornadoTransport(AbstractBaseTransport):
 

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2e639b8a/gremlin-python/src/main/jython/gremlin_python/driver/transport.py
----------------------------------------------------------------------
diff --git a/gremlin-python/src/main/jython/gremlin_python/driver/transport.py b/gremlin-python/src/main/jython/gremlin_python/driver/transport.py
index 453eb05..9181956 100644
--- a/gremlin-python/src/main/jython/gremlin_python/driver/transport.py
+++ b/gremlin-python/src/main/jython/gremlin_python/driver/transport.py
@@ -19,6 +19,8 @@ under the License.
 import abc
 import six
 
+__author__ = 'David M. Brown (davebshow@gmail.com)'
+
 
 @six.add_metaclass(abc.ABCMeta)
 class AbstractBaseTransport: