aboutsummaryrefslogtreecommitdiffstats
path: root/library/python
diff options
context:
space:
mode:
authoralexv-smirnov <alex@ydb.tech>2022-12-20 00:50:48 +0300
committeralexv-smirnov <alex@ydb.tech>2022-12-20 00:50:48 +0300
commit84f2cfa253cc618438ed6e9d68b33fa7c0d88cb9 (patch)
treef0cf2236e0aafb3e437199f1ac7b559e7fad554a /library/python
parentbde6febc1ad3b826e72746de21d7250803e8e0b5 (diff)
downloadydb-84f2cfa253cc618438ed6e9d68b33fa7c0d88cb9.tar.gz
add windows platform to ydb github export
Diffstat (limited to 'library/python')
-rw-r--r--library/python/symbols/win_unicode_console/syms.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/library/python/symbols/win_unicode_console/syms.cpp b/library/python/symbols/win_unicode_console/syms.cpp
new file mode 100644
index 0000000000..a26f068518
--- /dev/null
+++ b/library/python/symbols/win_unicode_console/syms.cpp
@@ -0,0 +1,15 @@
+#define SYM(SYM_NAME) extern "C" void SYM_NAME();
+SYM(PyFile_SetEncoding)
+SYM(PyFile_AsFile)
+SYM(PyMem_Malloc)
+SYM(PyOS_Readline)
+#undef SYM
+
+#include <library/python/symbols/registry/syms.h>
+
+BEGIN_SYMS("python")
+SYM(PyFile_SetEncoding)
+SYM(PyFile_AsFile)
+SYM(PyMem_Malloc)
+SYM(PyOS_Readline)
+END_SYMS()