[
https://issues.apache.org/jira/browse/TINKERPOP-3025?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17804946#comment-17804946
]
ASF GitHub Bot commented on TINKERPOP-3025:
-------------------------------------------
ryn5 commented on code in PR #2432:
URL: https://github.com/apache/tinkerpop/pull/2432#discussion_r1446814087
##########
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:
Oh right, I forgot that none hasn't been changed to a filtering step yet.
Removing this change.
> 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)