diff options
author | vvvv <[email protected]> | 2025-10-06 13:26:25 +0300 |
---|---|---|
committer | vvvv <[email protected]> | 2025-10-06 14:06:25 +0300 |
commit | eca8ce9cb1613d5c983185c4e43c20651a9638aa (patch) | |
tree | 61ee5ae779948e61af9a7691d19eaa2c09869121 /yql/essentials/udfs/common/python/bindings/py_list.h | |
parent | 4adf7eecae16a9b228b28cc5f64c27ef69ad5ec2 (diff) |
YQL-20086 udfs
init
commit_hash:f9684778bf1ea956965f2360b80b91edb7d4ffbe
Diffstat (limited to 'yql/essentials/udfs/common/python/bindings/py_list.h')
-rw-r--r-- | yql/essentials/udfs/common/python/bindings/py_list.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/yql/essentials/udfs/common/python/bindings/py_list.h b/yql/essentials/udfs/common/python/bindings/py_list.h index 9db170a7954..9266ff918f5 100644 --- a/yql/essentials/udfs/common/python/bindings/py_list.h +++ b/yql/essentials/udfs/common/python/bindings/py_list.h @@ -11,23 +11,23 @@ extern PyTypeObject PyThinListIteratorType; extern PyTypeObject PyThinListType; TPyObjectPtr ToPyLazyList( - const TPyCastContext::TPtr& castCtx, - const NKikimr::NUdf::TType* itemType, - const NKikimr::NUdf::TUnboxedValuePod& value); + const TPyCastContext::TPtr& castCtx, + const NKikimr::NUdf::TType* itemType, + const NKikimr::NUdf::TUnboxedValuePod& value); NKikimr::NUdf::TUnboxedValue FromPyLazyGenerator( - const TPyCastContext::TPtr& castCtx, - const NKikimr::NUdf::TType* type, - TPyObjectPtr callableObj); + const TPyCastContext::TPtr& castCtx, + const NKikimr::NUdf::TType* type, + TPyObjectPtr callableObj); NKikimr::NUdf::TUnboxedValue FromPyLazyIterable( - const TPyCastContext::TPtr& castCtx, - const NKikimr::NUdf::TType* type, - TPyObjectPtr iterableObj); + const TPyCastContext::TPtr& castCtx, + const NKikimr::NUdf::TType* type, + TPyObjectPtr iterableObj); NKikimr::NUdf::TUnboxedValue FromPyLazyIterator( - const TPyCastContext::TPtr& castCtx, - const NKikimr::NUdf::TType* type, - TPyObjectPtr iteratorObj); + const TPyCastContext::TPtr& castCtx, + const NKikimr::NUdf::TType* type, + TPyObjectPtr iteratorObj); -} // namspace NPython +} // namespace NPython |