[
https://issues.apache.org/jira/browse/TINKERPOP-3025?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17804910#comment-17804910
]
ASF GitHub Bot commented on TINKERPOP-3025:
-------------------------------------------
xiazcy commented on code in PR #2432:
URL: https://github.com/apache/tinkerpop/pull/2432#discussion_r1446708815
##########
gremlin-python/src/main/python/gremlin_python/process/graph_traversal.py:
##########
@@ -1451,6 +1467,10 @@ def merge_v(cls, *args):
def min_(cls, *args):
return cls.graph_traversal(None, None, Bytecode()).min_(*args)
+ @classmethod
+ def none(cls, *args):
+ return cls.graph_traversal(None, None, Bytecode()).none(*args)
Review Comment:
If my understanding is correct, `none()` is a terminal step so there is no
use to add it in the `__` class here (which is why it hasn't been in the class).
> l_trim() and r_trim() missing in python
> ---------------------------------------
>
> Key: TINKERPOP-3025
> URL: https://issues.apache.org/jira/browse/TINKERPOP-3025
> Project: TinkerPop
> Issue Type: Bug
> Components: python
> Affects Versions: 3.7.1
> Reporter: Stephen Mallette
> Priority: Critical
>
> The steps are present but only in the camel case form and not the proper
> pythonic snake case form. Check for other missing snake case options.
> Deprecate the old forms.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)