You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2016/08/23 21:54:43 UTC

[2/3] tinkerpop git commit: removed print statement

removed print statement


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

Branch: refs/heads/TINKERPOP-1278
Commit: 8b0927378ef1f929035b14a0b4340065578ea3fb
Parents: 768c053
Author: davebshow <da...@gmail.com>
Authored: Tue Aug 23 16:37:53 2016 -0400
Committer: davebshow <da...@gmail.com>
Committed: Tue Aug 23 16:37:53 2016 -0400

----------------------------------------------------------------------
 .../main/jython/gremlin_python/driver/driver_remote_connection.py   | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/8b092737/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 d7ddc89..fa47920 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
@@ -70,7 +70,6 @@ class DriverRemoteConnection(RemoteConnection):
 
         :returns: :py:class:`Response` object
         """
-        print(request_id)
         message = self._get_bytecode_message(bytecode, request_id)
         traversers = yield self._execute_message(message, parse_traverser)
         raise gen.Return(traversers)