diff options
author | Vitalii Gridnev <gridnevvvit@gmail.com> | 2022-02-10 16:47:25 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:25 +0300 |
commit | dc5feacd15e76abe98d23fe0d4ea3c02cb8de60f (patch) | |
tree | 9814fbd1c3effac9b8377c5d604b367b14e2db55 /contrib/libs | |
parent | 30ed3937ab02d1b3c4dec4d93fb86c683217d9be (diff) | |
download | ydb-dc5feacd15e76abe98d23fe0d4ea3c02cb8de60f.tar.gz |
Restoring authorship annotation for Vitalii Gridnev <gridnevvvit@gmail.com>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs')
-rw-r--r-- | contrib/libs/grpc/src/python/grpcio/grpc/_channel.py | 2 | ||||
-rw-r--r-- | contrib/libs/libidn/dynamic/libidn.exports | 10 | ||||
-rw-r--r-- | contrib/libs/python/ya.make | 2 | ||||
-rw-r--r-- | contrib/libs/rapidjson/include/rapidjson/internal/stack.h | 6 |
4 files changed, 10 insertions, 10 deletions
diff --git a/contrib/libs/grpc/src/python/grpcio/grpc/_channel.py b/contrib/libs/grpc/src/python/grpcio/grpc/_channel.py index 2174eb3d31..11921d7883 100644 --- a/contrib/libs/grpc/src/python/grpcio/grpc/_channel.py +++ b/contrib/libs/grpc/src/python/grpcio/grpc/_channel.py @@ -1291,7 +1291,7 @@ def _channel_managed_call_management(state): class _ChannelConnectivityState(object): def __init__(self, channel): - self.lock = threading.RLock() + self.lock = threading.RLock() self.channel = channel self.polling = False self.connectivity = None diff --git a/contrib/libs/libidn/dynamic/libidn.exports b/contrib/libs/libidn/dynamic/libidn.exports index a02ba04456..586b60a0f8 100644 --- a/contrib/libs/libidn/dynamic/libidn.exports +++ b/contrib/libs/libidn/dynamic/libidn.exports @@ -2,8 +2,8 @@ C idna_to_ascii_4i C idna_to_unicode_44i C idna_to_ascii_4z C idna_to_unicode_44z -C punycode_encode -C punycode_strerror -C punycode_decode -C idna_strerror -C idna_to_unicode_4z4z +C punycode_encode +C punycode_strerror +C punycode_decode +C idna_strerror +C idna_to_unicode_4z4z diff --git a/contrib/libs/python/ya.make b/contrib/libs/python/ya.make index c3bb7fef55..20a57f4b48 100644 --- a/contrib/libs/python/ya.make +++ b/contrib/libs/python/ya.make @@ -19,7 +19,7 @@ IF (USE_ARCADIA_PYTHON) library/python/symbols/libc library/python/symbols/python ) - IF (NOT OS_WINDOWS AND NOT OPENSOURCE) + IF (NOT OS_WINDOWS AND NOT OPENSOURCE) PEERDIR( library/python/symbols/uuid ) diff --git a/contrib/libs/rapidjson/include/rapidjson/internal/stack.h b/contrib/libs/rapidjson/include/rapidjson/internal/stack.h index f93cffd80c..863ff693e8 100644 --- a/contrib/libs/rapidjson/include/rapidjson/internal/stack.h +++ b/contrib/libs/rapidjson/include/rapidjson/internal/stack.h @@ -17,7 +17,7 @@ #include "../allocators.h" #include "swap.h" -#include <cstddef> +#include <cstddef> #if defined(__clang__) RAPIDJSON_DIAG_PUSH @@ -115,7 +115,7 @@ public: template<typename T> RAPIDJSON_FORCEINLINE void Reserve(size_t count = 1) { // Expand the stack if needed - if (RAPIDJSON_UNLIKELY(static_cast<std::ptrdiff_t>(sizeof(T) * count) > (stackEnd_ - stackTop_))) + if (RAPIDJSON_UNLIKELY(static_cast<std::ptrdiff_t>(sizeof(T) * count) > (stackEnd_ - stackTop_))) Expand<T>(count); } @@ -128,7 +128,7 @@ public: template<typename T> RAPIDJSON_FORCEINLINE T* PushUnsafe(size_t count = 1) { RAPIDJSON_ASSERT(stackTop_); - RAPIDJSON_ASSERT(static_cast<std::ptrdiff_t>(sizeof(T) * count) <= (stackEnd_ - stackTop_)); + RAPIDJSON_ASSERT(static_cast<std::ptrdiff_t>(sizeof(T) * count) <= (stackEnd_ - stackTop_)); T* ret = reinterpret_cast<T*>(stackTop_); stackTop_ += sizeof(T) * count; return ret; |