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_dict.h | |
| parent | 4adf7eecae16a9b228b28cc5f64c27ef69ad5ec2 (diff) | |
YQL-20086 udfs
init
commit_hash:f9684778bf1ea956965f2360b80b91edb7d4ffbe
Diffstat (limited to 'yql/essentials/udfs/common/python/bindings/py_dict.h')
| -rw-r--r-- | yql/essentials/udfs/common/python/bindings/py_dict.h | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/yql/essentials/udfs/common/python/bindings/py_dict.h b/yql/essentials/udfs/common/python/bindings/py_dict.h index 538ca69a127..c1337cc5ec4 100644 --- a/yql/essentials/udfs/common/python/bindings/py_dict.h +++ b/yql/essentials/udfs/common/python/bindings/py_dict.h @@ -9,42 +9,42 @@ extern PyTypeObject PyLazyDictType; extern PyTypeObject PyLazySetType; TPyObjectPtr ToPyLazyDict( - const TPyCastContext::TPtr& castCtx, - const NKikimr::NUdf::TType* keyType, - const NKikimr::NUdf::TType* payloadType, - const NKikimr::NUdf::TUnboxedValuePod& value); + const TPyCastContext::TPtr& castCtx, + const NKikimr::NUdf::TType* keyType, + const NKikimr::NUdf::TType* payloadType, + const NKikimr::NUdf::TUnboxedValuePod& value); TPyObjectPtr ToPyLazySet( - 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 FromPyMapping( - const TPyCastContext::TPtr& castCtx, - const NKikimr::NUdf::TType* keyType, - const NKikimr::NUdf::TType* payType, - PyObject* map); + const TPyCastContext::TPtr& castCtx, + const NKikimr::NUdf::TType* keyType, + const NKikimr::NUdf::TType* payType, + PyObject* map); NKikimr::NUdf::TUnboxedValue FromPyDict( - const TPyCastContext::TPtr& castCtx, - const NKikimr::NUdf::TType* keyType, - const NKikimr::NUdf::TType* payType, - PyObject* dict); + const TPyCastContext::TPtr& castCtx, + const NKikimr::NUdf::TType* keyType, + const NKikimr::NUdf::TType* payType, + PyObject* dict); NKikimr::NUdf::TUnboxedValue FromPySet( - const TPyCastContext::TPtr& castCtx, - const NKikimr::NUdf::TType* itemType, - PyObject* set); + const TPyCastContext::TPtr& castCtx, + const NKikimr::NUdf::TType* itemType, + PyObject* set); NKikimr::NUdf::TUnboxedValue FromPySequence( - const TPyCastContext::TPtr& castCtx, - const NKikimr::NUdf::TType* keyType, - PyObject* sequence); + const TPyCastContext::TPtr& castCtx, + const NKikimr::NUdf::TType* keyType, + PyObject* sequence); NKikimr::NUdf::TUnboxedValue FromPySequence( - const TPyCastContext::TPtr& castCtx, - const NKikimr::NUdf::TType* itemType, - const NKikimr::NUdf::TDataTypeId keyType, - PyObject* sequence); + const TPyCastContext::TPtr& castCtx, + const NKikimr::NUdf::TType* itemType, + const NKikimr::NUdf::TDataTypeId keyType, + PyObject* sequence); -} // namspace NPython +} // namespace NPython |
