diff options
author | golovasteek <golovasteek@yandex-team.ru> | 2022-02-10 16:48:19 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:19 +0300 |
commit | 24e42061bd52ed0f06dff42f3db89414ba1d186e (patch) | |
tree | b222e5ac2e2e98872661c51ccceee5da0d291e13 /contrib | |
parent | 9167a1c2886ac235ffefbb835b1608359d1cff5d (diff) | |
download | ydb-24e42061bd52ed0f06dff42f3db89414ba1d186e.tar.gz |
Restoring authorship annotation for <golovasteek@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/tools/python3/src/Include/pyconfig-linux.h | 4 | ||||
-rw-r--r-- | contrib/tools/python3/src/Include/pyconfig-osx.h | 4 | ||||
-rw-r--r-- | contrib/tools/python3/src/Lib/distutils/sysconfig.py | 20 |
3 files changed, 14 insertions, 14 deletions
diff --git a/contrib/tools/python3/src/Include/pyconfig-linux.h b/contrib/tools/python3/src/Include/pyconfig-linux.h index 3b2ff57c2b..98de8abc72 100644 --- a/contrib/tools/python3/src/Include/pyconfig-linux.h +++ b/contrib/tools/python3/src/Include/pyconfig-linux.h @@ -1466,9 +1466,9 @@ #define SIZEOF_SHORT 2 /* The size of `size_t', as computed by sizeof. */ -#if !defined(SIZEOF_SIZE_T) +#if !defined(SIZEOF_SIZE_T) #define SIZEOF_SIZE_T 8 -#endif +#endif /* The size of `time_t', as computed by sizeof. */ #define SIZEOF_TIME_T 8 diff --git a/contrib/tools/python3/src/Include/pyconfig-osx.h b/contrib/tools/python3/src/Include/pyconfig-osx.h index ab3c3629dd..e7e69f735b 100644 --- a/contrib/tools/python3/src/Include/pyconfig-osx.h +++ b/contrib/tools/python3/src/Include/pyconfig-osx.h @@ -1464,9 +1464,9 @@ #define SIZEOF_SHORT 2 /* The size of `size_t', as computed by sizeof. */ -#if !defined(SIZEOF_SIZE_T) +#if !defined(SIZEOF_SIZE_T) #define SIZEOF_SIZE_T 8 -#endif +#endif /* The size of `time_t', as computed by sizeof. */ #define SIZEOF_TIME_T 8 diff --git a/contrib/tools/python3/src/Lib/distutils/sysconfig.py b/contrib/tools/python3/src/Lib/distutils/sysconfig.py index 10b9e2acac..4e5464705b 100644 --- a/contrib/tools/python3/src/Lib/distutils/sysconfig.py +++ b/contrib/tools/python3/src/Lib/distutils/sysconfig.py @@ -438,17 +438,17 @@ _config_vars = None def _init_posix(): """Initialize the module as appropriate for POSIX systems.""" # _sysconfigdata is generated at build time, see the sysconfig module - #name = os.environ.get('_PYTHON_SYSCONFIGDATA_NAME', - # '_sysconfigdata_{abi}_{platform}_{multiarch}'.format( - # abi=sys.abiflags, - # platform=sys.platform, - # multiarch=getattr(sys.implementation, '_multiarch', ''), - #)) - #_temp = __import__(name, globals(), locals(), ['build_time_vars'], 0) - #build_time_vars = _temp.build_time_vars + #name = os.environ.get('_PYTHON_SYSCONFIGDATA_NAME', + # '_sysconfigdata_{abi}_{platform}_{multiarch}'.format( + # abi=sys.abiflags, + # platform=sys.platform, + # multiarch=getattr(sys.implementation, '_multiarch', ''), + #)) + #_temp = __import__(name, globals(), locals(), ['build_time_vars'], 0) + #build_time_vars = _temp.build_time_vars global _config_vars - _config_vars = {'SO': '.so'} - #_config_vars.update(build_time_vars) + _config_vars = {'SO': '.so'} + #_config_vars.update(build_time_vars) def _init_nt(): |