aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/python
diff options
context:
space:
mode:
authorAlexSm <alex@ydb.tech>2024-03-05 10:40:59 +0100
committerGitHub <noreply@github.com>2024-03-05 12:40:59 +0300
commit1ac13c847b5358faba44dbb638a828e24369467b (patch)
tree07672b4dd3604ad3dee540a02c6494cb7d10dc3d /contrib/libs/python
parentffcca3e7f7958ddc6487b91d3df8c01054bd0638 (diff)
downloadydb-1ac13c847b5358faba44dbb638a828e24369467b.tar.gz
Library import 16 (#2433)
Co-authored-by: robot-piglet <robot-piglet@yandex-team.com> Co-authored-by: deshevoy <deshevoy@yandex-team.com> Co-authored-by: robot-contrib <robot-contrib@yandex-team.com> Co-authored-by: thegeorg <thegeorg@yandex-team.com> Co-authored-by: robot-ya-builder <robot-ya-builder@yandex-team.com> Co-authored-by: svidyuk <svidyuk@yandex-team.com> Co-authored-by: shadchin <shadchin@yandex-team.com> Co-authored-by: robot-ratatosk <robot-ratatosk@yandex-team.com> Co-authored-by: innokentii <innokentii@yandex-team.com> Co-authored-by: arkady-e1ppa <arkady-e1ppa@yandex-team.com> Co-authored-by: snermolaev <snermolaev@yandex-team.com> Co-authored-by: dimdim11 <dimdim11@yandex-team.com> Co-authored-by: kickbutt <kickbutt@yandex-team.com> Co-authored-by: abdullinsaid <abdullinsaid@yandex-team.com> Co-authored-by: korsunandrei <korsunandrei@yandex-team.com> Co-authored-by: petrk <petrk@yandex-team.com> Co-authored-by: miroslav2 <miroslav2@yandex-team.com> Co-authored-by: serjflint <serjflint@yandex-team.com> Co-authored-by: akhropov <akhropov@yandex-team.com> Co-authored-by: prettyboy <prettyboy@yandex-team.com> Co-authored-by: ilikepugs <ilikepugs@yandex-team.com> Co-authored-by: hiddenpath <hiddenpath@yandex-team.com> Co-authored-by: mikhnenko <mikhnenko@yandex-team.com> Co-authored-by: spreis <spreis@yandex-team.com> Co-authored-by: andreyshspb <andreyshspb@yandex-team.com> Co-authored-by: dimaandreev <dimaandreev@yandex-team.com> Co-authored-by: rashid <rashid@yandex-team.com> Co-authored-by: robot-ydb-importer <robot-ydb-importer@yandex-team.com> Co-authored-by: r-vetrov <r-vetrov@yandex-team.com> Co-authored-by: ypodlesov <ypodlesov@yandex-team.com> Co-authored-by: zaverden <zaverden@yandex-team.com> Co-authored-by: vpozdyayev <vpozdyayev@yandex-team.com> Co-authored-by: robot-cozmo <robot-cozmo@yandex-team.com> Co-authored-by: v-korovin <v-korovin@yandex-team.com> Co-authored-by: arikon <arikon@yandex-team.com> Co-authored-by: khoden <khoden@yandex-team.com> Co-authored-by: psydmm <psydmm@yandex-team.com> Co-authored-by: robot-javacom <robot-javacom@yandex-team.com> Co-authored-by: dtorilov <dtorilov@yandex-team.com> Co-authored-by: sennikovmv <sennikovmv@yandex-team.com> Co-authored-by: hcpp <hcpp@ydb.tech>
Diffstat (limited to 'contrib/libs/python')
-rw-r--r--contrib/libs/python/Include/Python.h2
-rw-r--r--contrib/libs/python/Include/abstract.h2
-rw-r--r--contrib/libs/python/Include/compile.h2
-rw-r--r--contrib/libs/python/Include/datetime.h2
-rw-r--r--contrib/libs/python/Include/descrobject.h2
-rw-r--r--contrib/libs/python/Include/frameobject.h2
-rw-r--r--contrib/libs/python/Include/internal/pycore_frame.h2
-rw-r--r--contrib/libs/python/Include/pyconfig.h2
-rw-r--r--contrib/libs/python/Include/pyerrors.h2
-rw-r--r--contrib/libs/python/Include/pymem.h2
-rw-r--r--contrib/libs/python/Include/pystate.h2
-rw-r--r--contrib/libs/python/Include/pythread.h2
-rw-r--r--contrib/libs/python/Include/structmember.h2
-rw-r--r--contrib/libs/python/Include/structseq.h2
-rw-r--r--contrib/libs/python/Include/traceback.h2
-rw-r--r--contrib/libs/python/Include/unicodeobject.h2
-rw-r--r--contrib/libs/python/ya.make4
17 files changed, 18 insertions, 18 deletions
diff --git a/contrib/libs/python/Include/Python.h b/contrib/libs/python/Include/Python.h
index 5aa4c0b515..e4e394a30c 100644
--- a/contrib/libs/python/Include/Python.h
+++ b/contrib/libs/python/Include/Python.h
@@ -1,7 +1,7 @@
#pragma once
#ifdef USE_PYTHON3
-#include <contrib/tools/python3/src/Include/Python.h>
+#include <contrib/tools/python3/Include/Python.h>
#else
#include <contrib/tools/python/src/Include/Python.h>
#endif
diff --git a/contrib/libs/python/Include/abstract.h b/contrib/libs/python/Include/abstract.h
index 3073b25e25..6ec6fdd27f 100644
--- a/contrib/libs/python/Include/abstract.h
+++ b/contrib/libs/python/Include/abstract.h
@@ -1,7 +1,7 @@
#pragma once
#ifdef USE_PYTHON3
-#include <contrib/tools/python3/src/Include/abstract.h>
+#include <contrib/tools/python3/Include/abstract.h>
#else
#include <contrib/tools/python/src/Include/abstract.h>
#endif
diff --git a/contrib/libs/python/Include/compile.h b/contrib/libs/python/Include/compile.h
index eb3595aab0..4d0a014413 100644
--- a/contrib/libs/python/Include/compile.h
+++ b/contrib/libs/python/Include/compile.h
@@ -1,7 +1,7 @@
#pragma once
#ifdef USE_PYTHON3
-#include <contrib/tools/python3/src/Include/compile.h>
+#include <contrib/tools/python3/Include/compile.h>
#else
#include <contrib/tools/python/src/Include/compile.h>
#endif
diff --git a/contrib/libs/python/Include/datetime.h b/contrib/libs/python/Include/datetime.h
index b24acd5638..bf11bfd29b 100644
--- a/contrib/libs/python/Include/datetime.h
+++ b/contrib/libs/python/Include/datetime.h
@@ -1,7 +1,7 @@
#pragma once
#ifdef USE_PYTHON3
-#include <contrib/tools/python3/src/Include/datetime.h>
+#include <contrib/tools/python3/Include/datetime.h>
#else
#include <contrib/tools/python/src/Include/datetime.h>
#endif
diff --git a/contrib/libs/python/Include/descrobject.h b/contrib/libs/python/Include/descrobject.h
index 5d450cf256..55164c1b7b 100644
--- a/contrib/libs/python/Include/descrobject.h
+++ b/contrib/libs/python/Include/descrobject.h
@@ -1,7 +1,7 @@
#pragma once
#ifdef USE_PYTHON3
-#include <contrib/tools/python3/src/Include/descrobject.h>
+#include <contrib/tools/python3/Include/descrobject.h>
#else
#include <contrib/tools/python/src/Include/descrobject.h>
#endif
diff --git a/contrib/libs/python/Include/frameobject.h b/contrib/libs/python/Include/frameobject.h
index 50168e372a..d92b5e157f 100644
--- a/contrib/libs/python/Include/frameobject.h
+++ b/contrib/libs/python/Include/frameobject.h
@@ -1,7 +1,7 @@
#pragma once
#ifdef USE_PYTHON3
-#include <contrib/tools/python3/src/Include/frameobject.h>
+#include <contrib/tools/python3/Include/frameobject.h>
#else
#include <contrib/tools/python/src/Include/frameobject.h>
#endif
diff --git a/contrib/libs/python/Include/internal/pycore_frame.h b/contrib/libs/python/Include/internal/pycore_frame.h
index 09ebc0ed13..80e07d19ed 100644
--- a/contrib/libs/python/Include/internal/pycore_frame.h
+++ b/contrib/libs/python/Include/internal/pycore_frame.h
@@ -1,7 +1,7 @@
#pragma once
#ifdef USE_PYTHON3
-#include <contrib/tools/python3/src/Include/internal/pycore_frame.h>
+#include <contrib/tools/python3/Include/internal/pycore_frame.h>
#else
#error "No <internal/pycore_frame.h> in Python2"
#endif
diff --git a/contrib/libs/python/Include/pyconfig.h b/contrib/libs/python/Include/pyconfig.h
index 3b13edb2ee..9bb42954b2 100644
--- a/contrib/libs/python/Include/pyconfig.h
+++ b/contrib/libs/python/Include/pyconfig.h
@@ -1,7 +1,7 @@
#pragma once
#ifdef USE_PYTHON3
-#include <contrib/tools/python3/src/Include/pyconfig.h>
+#include <contrib/tools/python3/Include/pyconfig.h>
#else
#include <contrib/tools/python/src/Include/pyconfig.h>
#endif
diff --git a/contrib/libs/python/Include/pyerrors.h b/contrib/libs/python/Include/pyerrors.h
index 587690a2b2..9a9ec600ad 100644
--- a/contrib/libs/python/Include/pyerrors.h
+++ b/contrib/libs/python/Include/pyerrors.h
@@ -1,7 +1,7 @@
#pragma once
#ifdef USE_PYTHON3
-#include <contrib/tools/python3/src/Include/pyerrors.h>
+#include <contrib/tools/python3/Include/pyerrors.h>
#else
#include <contrib/tools/python/src/Include/pyerrors.h>
#endif
diff --git a/contrib/libs/python/Include/pymem.h b/contrib/libs/python/Include/pymem.h
index 780aa553e1..f51871a02a 100644
--- a/contrib/libs/python/Include/pymem.h
+++ b/contrib/libs/python/Include/pymem.h
@@ -1,7 +1,7 @@
#pragma once
#ifdef USE_PYTHON3
-#include <contrib/tools/python3/src/Include/pymem.h>
+#include <contrib/tools/python3/Include/pymem.h>
#else
#include <contrib/tools/python/src/Include/pymem.h>
#endif
diff --git a/contrib/libs/python/Include/pystate.h b/contrib/libs/python/Include/pystate.h
index 6601f2591b..e37e92bff1 100644
--- a/contrib/libs/python/Include/pystate.h
+++ b/contrib/libs/python/Include/pystate.h
@@ -1,7 +1,7 @@
#pragma once
#ifdef USE_PYTHON3
-#include <contrib/tools/python3/src/Include/pystate.h>
+#include <contrib/tools/python3/Include/pystate.h>
#else
#include <contrib/tools/python/src/Include/pystate.h>
#endif
diff --git a/contrib/libs/python/Include/pythread.h b/contrib/libs/python/Include/pythread.h
index 3f3eae9530..b56d6cbce7 100644
--- a/contrib/libs/python/Include/pythread.h
+++ b/contrib/libs/python/Include/pythread.h
@@ -1,7 +1,7 @@
#pragma once
#ifdef USE_PYTHON3
-#include <contrib/tools/python3/src/Include/pythread.h>
+#include <contrib/tools/python3/Include/pythread.h>
#else
#include <contrib/tools/python/src/Include/pythread.h>
#endif
diff --git a/contrib/libs/python/Include/structmember.h b/contrib/libs/python/Include/structmember.h
index ab8d9c2924..e6477591b8 100644
--- a/contrib/libs/python/Include/structmember.h
+++ b/contrib/libs/python/Include/structmember.h
@@ -1,7 +1,7 @@
#pragma once
#ifdef USE_PYTHON3
-#include <contrib/tools/python3/src/Include/structmember.h>
+#include <contrib/tools/python3/Include/structmember.h>
#else
#include <contrib/tools/python/src/Include/structmember.h>
#endif
diff --git a/contrib/libs/python/Include/structseq.h b/contrib/libs/python/Include/structseq.h
index 02cadaaefe..46e9df6674 100644
--- a/contrib/libs/python/Include/structseq.h
+++ b/contrib/libs/python/Include/structseq.h
@@ -1,7 +1,7 @@
#pragma once
#ifdef USE_PYTHON3
-#include <contrib/tools/python3/src/Include/structseq.h>
+#include <contrib/tools/python3/Include/structseq.h>
#else
#include <contrib/tools/python/src/Include/structseq.h>
#endif
diff --git a/contrib/libs/python/Include/traceback.h b/contrib/libs/python/Include/traceback.h
index 284fc8ab7f..51d9b6c771 100644
--- a/contrib/libs/python/Include/traceback.h
+++ b/contrib/libs/python/Include/traceback.h
@@ -1,7 +1,7 @@
#pragma once
#ifdef USE_PYTHON3
-#include <contrib/tools/python3/src/Include/traceback.h>
+#include <contrib/tools/python3/Include/traceback.h>
#else
#include <contrib/tools/python/src/Include/traceback.h>
#endif
diff --git a/contrib/libs/python/Include/unicodeobject.h b/contrib/libs/python/Include/unicodeobject.h
index 172af650e1..d5394ac407 100644
--- a/contrib/libs/python/Include/unicodeobject.h
+++ b/contrib/libs/python/Include/unicodeobject.h
@@ -1,7 +1,7 @@
#pragma once
#ifdef USE_PYTHON3
-#include <contrib/tools/python3/src/Include/unicodeobject.h>
+#include <contrib/tools/python3/Include/unicodeobject.h>
#else
#include <contrib/tools/python/src/Include/unicodeobject.h>
#endif
diff --git a/contrib/libs/python/ya.make b/contrib/libs/python/ya.make
index 69a087a127..42524fc9c9 100644
--- a/contrib/libs/python/ya.make
+++ b/contrib/libs/python/ya.make
@@ -34,8 +34,8 @@ IF (USE_ARCADIA_PYTHON)
GLOBAL -DUSE_PYTHON3
)
PEERDIR(
- contrib/tools/python3/lib
- contrib/tools/python3/src
+ contrib/tools/python3/lib2
+ contrib/tools/python3
library/python/runtime_py3
)
ENDIF()