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 2019/12/05 13:23:31 UTC

[tinkerpop] branch TINKERPOP-2317 updated (534f4ad -> 65ebbed)

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a change to branch TINKERPOP-2317
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


 discard 534f4ad  TINKERPOP-2317 Removed Python 2 support
     add bfc7592  TINKERPOP-2322 Deprecate Jython support
     add c660d1c  Merge branch 'tp33' into tp34
     add 84e3a46  Merge branch 'tp34'
     add 7e9f3e9  TINKERPOP-2317 Removed Python 2 support
     add 65ebbed  TINKERPOP-2317 Removed Jython support

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (534f4ad)
            \
             N -- N -- N   refs/heads/TINKERPOP-2317 (65ebbed)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.asciidoc                                 |   1 +
 .../gremlin-server-integration-secure.yaml         |   5 +-
 .../gremlin-server/gremlin-server-integration.yaml |   5 +-
 docs/src/reference/gremlin-variants.asciidoc       |   3 +
 docs/src/upgrade/release-3.3.x.asciidoc            |  17 ++
 docs/src/upgrade/release-3.5.x.asciidoc            |   2 +
 gremlin-dotnet/test/pom.xml                        |   4 -
 gremlin-javascript/pom.xml                         |   4 -
 gremlin-python/glv/generate.groovy                 |   4 +-
 gremlin-python/pom.xml                             | 277 +++------------------
 .../python/jsr223/GremlinJythonScriptEngine.java   | 247 ------------------
 .../jsr223/GremlinJythonScriptEngineFactory.java   | 112 ---------
 .../gremlin/python/jsr223/JythonTranslator.java    |  78 ------
 .../gremlin/python/jsr223/PythonTranslator.java    | 264 --------------------
 .../gremlin/python/jsr223/SymbolHelper.java        |  62 -----
 gremlin-python/src/main/{jython => python}/LICENSE |   0
 .../src/main/{jython => python}/MANIFEST.in        |   0
 gremlin-python/src/main/{jython => python}/NOTICE  |   0
 .../src/main/{jython => python}/README.rst         |   0
 .../src/main/{jython => python}/example.py         |   0
 .../process => python/gremlin_python}/__init__.py  |   0
 .../gremlin_python/driver/__init__.py              |   0
 .../gremlin_python/driver/client.py                |   0
 .../gremlin_python/driver/connection.py            |   0
 .../driver/driver_remote_connection.py             |   0
 .../gremlin_python/driver/protocol.py              |   0
 .../gremlin_python/driver/remote_connection.py     |   0
 .../gremlin_python/driver/request.py               |   0
 .../gremlin_python/driver/resultset.py             |   0
 .../gremlin_python/driver/serializer.py            |   0
 .../gremlin_python/driver/tornado/__init__.py      |   0
 .../gremlin_python/driver/tornado/transport.py     |   0
 .../gremlin_python/driver/transport.py             |   0
 .../gremlin_python/process}/__init__.py            |   0
 .../gremlin_python/process/anonymous_traversal.py  |   0
 .../gremlin_python/process/graph_traversal.py      |   0
 .../gremlin_python/process/strategies.py           |   0
 .../gremlin_python/process/traversal.py            |   0
 .../{jython => python}/gremlin_python/statics.py   |   2 +-
 .../gremlin_python/structure}/__init__.py          |   0
 .../gremlin_python/structure/graph.py              |   0
 .../gremlin_python/structure/io}/__init__.py       |   0
 .../gremlin_python/structure/io/graphbinaryV1.py   |   6 +-
 .../gremlin_python/structure/io/graphsonV2d0.py    |   7 +-
 .../gremlin_python/structure/io/graphsonV3d0.py    |   7 +-
 .../{jython => python}/radish/feature_steps.py     |  30 +--
 .../src/main/{jython => python}/radish/terrain.py  |   0
 .../src/main/{jython => python}/runtest.py         |   0
 .../src/main/{jython => python}/setup.cfg          |   0
 .../src/main/{jython => python}/setup.py           |   0
 .../tests/driver => python/tests}/__init__.py      |   0
 .../src/main/{jython => python}/tests/conftest.py  |   0
 .../tests => python/tests/driver}/__init__.py      |   0
 .../{jython => python}/tests/driver/test_client.py |   0
 .../tests/driver/test_driver_remote_connection.py  |   2 +-
 .../test_driver_remote_connection_threaded.py      |   0
 .../tests/driver/test_serializer.py                |   0
 .../io => python/tests/process}/__init__.py        |   0
 .../{jython => python}/tests/process/test_dsl.py   |   0
 .../tests/process/test_strategies.py               |   0
 .../tests/process/test_traversal.py                |   0
 .../{jython => python}/tests/structure/__init__.py |   0
 .../tests/structure/io}/__init__.py                |   0
 .../tests/structure/io/test_functionalityio.py     |   0
 .../tests/structure/io/test_graphbinaryV1.py       |   0
 .../tests/structure/io/test_graphsonV2d0.py        |   0
 .../tests/structure/io/test_graphsonV3d0.py        |   0
 .../tests/structure/test_graph.py                  |   0
 .../main/{jython => python}/tests/test_statics.py  |   0
 .../services/javax.script.ScriptEngineFactory      |  20 --
 ...erpop.gremlin.jsr223.GremlinScriptEngineFactory |   1 -
 .../jsr223/GremlinJythonScriptEngineTest.java      | 105 --------
 .../python/jsr223/JythonScriptEngineSetup.java     |  63 -----
 .../python/jsr223/JythonTranslatorTest.java        | 122 ---------
 .../python/jsr223/PythonComputerProvider.java      |  36 ---
 .../jsr223/PythonGraphSONJavaTranslator.java       | 118 ---------
 .../jsr223/PythonGremlinScriptEngineTest.java      |  33 ---
 .../python/jsr223/PythonProcessComputerTest.java   |  35 ---
 .../python/jsr223/PythonProcessStandardTest.java   |  35 ---
 .../gremlin/python/jsr223/PythonProvider.java      | 158 ------------
 .../structure/io/graphson/GraphSONReaderTest.java  | 155 ------------
 .../structure/io/graphson/GraphSONWriterTest.java  | 163 ------------
 .../src/test/resources/log4j-silent.properties     |  23 --
 .../src/test/resources/log4j-test.properties       |  23 --
 gremlin-server/conf/gremlin-server-modern-py.yaml  |  59 -----
 .../src/test/scripts/test-server-start.groovy      |   8 -
 86 files changed, 88 insertions(+), 2208 deletions(-)
 delete mode 100644 gremlin-python/src/main/java/org/apache/tinkerpop/gremlin/python/jsr223/GremlinJythonScriptEngine.java
 delete mode 100644 gremlin-python/src/main/java/org/apache/tinkerpop/gremlin/python/jsr223/GremlinJythonScriptEngineFactory.java
 delete mode 100644 gremlin-python/src/main/java/org/apache/tinkerpop/gremlin/python/jsr223/JythonTranslator.java
 delete mode 100644 gremlin-python/src/main/java/org/apache/tinkerpop/gremlin/python/jsr223/PythonTranslator.java
 delete mode 100644 gremlin-python/src/main/java/org/apache/tinkerpop/gremlin/python/jsr223/SymbolHelper.java
 rename gremlin-python/src/main/{jython => python}/LICENSE (100%)
 rename gremlin-python/src/main/{jython => python}/MANIFEST.in (100%)
 rename gremlin-python/src/main/{jython => python}/NOTICE (100%)
 rename gremlin-python/src/main/{jython => python}/README.rst (100%)
 rename gremlin-python/src/main/{jython => python}/example.py (100%)
 rename gremlin-python/src/main/{jython/gremlin_python/process => python/gremlin_python}/__init__.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/driver/__init__.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/driver/client.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/driver/connection.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/driver/driver_remote_connection.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/driver/protocol.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/driver/remote_connection.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/driver/request.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/driver/resultset.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/driver/serializer.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/driver/tornado/__init__.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/driver/tornado/transport.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/driver/transport.py (100%)
 rename gremlin-python/src/main/{jython/gremlin_python => python/gremlin_python/process}/__init__.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/process/anonymous_traversal.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/process/graph_traversal.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/process/strategies.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/process/traversal.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/statics.py (98%)
 rename gremlin-python/src/main/{jython/gremlin_python/structure/io => python/gremlin_python/structure}/__init__.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/structure/graph.py (100%)
 rename gremlin-python/src/main/{jython/gremlin_python/structure => python/gremlin_python/structure/io}/__init__.py (100%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/structure/io/graphbinaryV1.py (99%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/structure/io/graphsonV2d0.py (98%)
 rename gremlin-python/src/main/{jython => python}/gremlin_python/structure/io/graphsonV3d0.py (98%)
 rename gremlin-python/src/main/{jython => python}/radish/feature_steps.py (88%)
 rename gremlin-python/src/main/{jython => python}/radish/terrain.py (100%)
 rename gremlin-python/src/main/{jython => python}/runtest.py (100%)
 rename gremlin-python/src/main/{jython => python}/setup.cfg (100%)
 rename gremlin-python/src/main/{jython => python}/setup.py (100%)
 rename gremlin-python/src/main/{jython/tests/driver => python/tests}/__init__.py (100%)
 rename gremlin-python/src/main/{jython => python}/tests/conftest.py (100%)
 rename gremlin-python/src/main/{jython/tests => python/tests/driver}/__init__.py (100%)
 rename gremlin-python/src/main/{jython => python}/tests/driver/test_client.py (100%)
 rename gremlin-python/src/main/{jython => python}/tests/driver/test_driver_remote_connection.py (98%)
 rename gremlin-python/src/main/{jython => python}/tests/driver/test_driver_remote_connection_threaded.py (100%)
 rename gremlin-python/src/main/{jython => python}/tests/driver/test_serializer.py (100%)
 rename gremlin-python/src/main/{jython/tests/structure/io => python/tests/process}/__init__.py (100%)
 rename gremlin-python/src/main/{jython => python}/tests/process/test_dsl.py (100%)
 rename gremlin-python/src/main/{jython => python}/tests/process/test_strategies.py (100%)
 rename gremlin-python/src/main/{jython => python}/tests/process/test_traversal.py (100%)
 rename gremlin-python/src/main/{jython => python}/tests/structure/__init__.py (100%)
 rename gremlin-python/src/main/{jython/tests/process => python/tests/structure/io}/__init__.py (100%)
 rename gremlin-python/src/main/{jython => python}/tests/structure/io/test_functionalityio.py (100%)
 rename gremlin-python/src/main/{jython => python}/tests/structure/io/test_graphbinaryV1.py (100%)
 rename gremlin-python/src/main/{jython => python}/tests/structure/io/test_graphsonV2d0.py (100%)
 rename gremlin-python/src/main/{jython => python}/tests/structure/io/test_graphsonV3d0.py (100%)
 rename gremlin-python/src/main/{jython => python}/tests/structure/test_graph.py (100%)
 rename gremlin-python/src/main/{jython => python}/tests/test_statics.py (100%)
 delete mode 100644 gremlin-python/src/main/resources/META-INF/services/javax.script.ScriptEngineFactory
 delete mode 100644 gremlin-python/src/main/resources/META-INF/services/org.apache.tinkerpop.gremlin.jsr223.GremlinScriptEngineFactory
 delete mode 100644 gremlin-python/src/test/java/org/apache/tinkerpop/gremlin/python/jsr223/GremlinJythonScriptEngineTest.java
 delete mode 100644 gremlin-python/src/test/java/org/apache/tinkerpop/gremlin/python/jsr223/JythonScriptEngineSetup.java
 delete mode 100644 gremlin-python/src/test/java/org/apache/tinkerpop/gremlin/python/jsr223/JythonTranslatorTest.java
 delete mode 100644 gremlin-python/src/test/java/org/apache/tinkerpop/gremlin/python/jsr223/PythonComputerProvider.java
 delete mode 100644 gremlin-python/src/test/java/org/apache/tinkerpop/gremlin/python/jsr223/PythonGraphSONJavaTranslator.java
 delete mode 100644 gremlin-python/src/test/java/org/apache/tinkerpop/gremlin/python/jsr223/PythonGremlinScriptEngineTest.java
 delete mode 100644 gremlin-python/src/test/java/org/apache/tinkerpop/gremlin/python/jsr223/PythonProcessComputerTest.java
 delete mode 100644 gremlin-python/src/test/java/org/apache/tinkerpop/gremlin/python/jsr223/PythonProcessStandardTest.java
 delete mode 100644 gremlin-python/src/test/java/org/apache/tinkerpop/gremlin/python/jsr223/PythonProvider.java
 delete mode 100644 gremlin-python/src/test/java/org/apache/tinkerpop/gremlin/python/structure/io/graphson/GraphSONReaderTest.java
 delete mode 100644 gremlin-python/src/test/java/org/apache/tinkerpop/gremlin/python/structure/io/graphson/GraphSONWriterTest.java
 delete mode 100644 gremlin-python/src/test/resources/log4j-silent.properties
 delete mode 100644 gremlin-python/src/test/resources/log4j-test.properties
 delete mode 100644 gremlin-server/conf/gremlin-server-modern-py.yaml