aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/pybind/pod.cpp
diff options
context:
space:
mode:
authorprettyboy <prettyboy@yandex-team.com>2023-09-08 10:08:57 +0300
committerprettyboy <prettyboy@yandex-team.com>2023-09-08 10:39:21 +0300
commit329f805999a3b41e406959a17cf35ab193ef05a5 (patch)
tree9a3059df4d544b6c9d6f474344e52f65bd13b4c1 /library/cpp/pybind/pod.cpp
parent02ea6261088be81bbc455933cecf8b41726946c1 (diff)
downloadydb-329f805999a3b41e406959a17cf35ab193ef05a5.tar.gz
Revert commit rXXXXXX,[build/plugins/ytest] Allow prebuilt linters for opensource
Diffstat (limited to 'library/cpp/pybind/pod.cpp')
-rw-r--r--library/cpp/pybind/pod.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/library/cpp/pybind/pod.cpp b/library/cpp/pybind/pod.cpp
deleted file mode 100644
index 3cf030e537b..00000000000
--- a/library/cpp/pybind/pod.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-#include "pod.h"
-
-namespace NPyBind {
- class TPODAttrGetter: public TBaseAttrGetter<TPOD> {
- public:
- bool GetAttr(PyObject*, const TPOD& self, const TString& attr, PyObject*& res) const override {
- res = self.GetAttr(attr.c_str());
- return res != nullptr;
- }
- };
-
- TPODTraits::TPODTraits()
- : MyParent("TPOD", "simple struct")
- {
- AddGetter("", new TPODAttrGetter);
- }
-
-}