diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-09-30 00:01:18 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-09-30 00:08:50 +0300 |
commit | 577630edb49bba2fee518732e50987df4aa63310 (patch) | |
tree | b6c5f8096894fbfb8b00dd9da3660a7a32a66fd0 /library/python | |
parent | a03aa200c67eac6745443ff0f9478435813a21af (diff) | |
download | ydb-577630edb49bba2fee518732e50987df4aa63310.tar.gz |
Intermediate changes
commit_hash:99ac877e6e05737455ad173d5ce45946fde7d623
Diffstat (limited to 'library/python')
-rw-r--r-- | library/python/monlib/ut/metric_ut.pyx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/library/python/monlib/ut/metric_ut.pyx b/library/python/monlib/ut/metric_ut.pyx index 3513eaf9d1..5e35235636 100644 --- a/library/python/monlib/ut/metric_ut.pyx +++ b/library/python/monlib/ut/metric_ut.pyx @@ -12,16 +12,14 @@ from util.generic.string cimport TStringBuf, TString from util.generic.maybe cimport TMaybe from util.generic.ptr cimport THolder +from libcpp.utility cimport move + from cython.operator cimport dereference as deref import pytest import unittest -cdef extern from "<utility>" namespace "std" nogil: - cdef IHistogramCollectorPtr&& move(IHistogramCollectorPtr t) - - class TestMetric(unittest.TestCase): def test_labels(self): cdef TLabels labels = TLabels() |