aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorrnefyodov <rnefyodov@yandex-team.ru>2022-02-10 16:47:17 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:17 +0300
commitc753751b693cf7c481c0292912e2b7536fa6d36a (patch)
tree9814fbd1c3effac9b8377c5d604b367b14e2db55 /contrib
parentc22320e8c4f3d7be38c504706f137034e91d31e6 (diff)
downloadydb-c753751b693cf7c481c0292912e2b7536fa6d36a.tar.gz
Restoring authorship annotation for <rnefyodov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/libs/ya.make2
-rw-r--r--contrib/python/ya.make6
-rw-r--r--contrib/tools/cython/Cython/Utility/Optimize.c8
-rw-r--r--contrib/tools/ragel6/cdcodegen.cpp8
4 files changed, 12 insertions, 12 deletions
diff --git a/contrib/libs/ya.make b/contrib/libs/ya.make
index a97ba2abec..9c4640fdcf 100644
--- a/contrib/libs/ya.make
+++ b/contrib/libs/ya.make
@@ -375,7 +375,7 @@ IF (OS_FREEBSD OR OS_LINUX)
asmglibc
httpd
mod_perl2
- libeatmydata
+ libeatmydata
)
ENDIF()
diff --git a/contrib/python/ya.make b/contrib/python/ya.make
index ee415d1576..d01ced9f3a 100644
--- a/contrib/python/ya.make
+++ b/contrib/python/ya.make
@@ -184,10 +184,10 @@ RECURSE(
crontab
cryptography
cssselect
- cssutils
+ cssutils
curlify
cx-Oracle
- cycler
+ cycler
cymem
cytoolz
czipfile
@@ -750,7 +750,7 @@ RECURSE(
plugincode
plumbum
ply
- plyvel
+ plyvel
polib
portalocker
portpicker
diff --git a/contrib/tools/cython/Cython/Utility/Optimize.c b/contrib/tools/cython/Cython/Utility/Optimize.c
index ee9c953caa..d18c9b78ec 100644
--- a/contrib/tools/cython/Cython/Utility/Optimize.c
+++ b/contrib/tools/cython/Cython/Utility/Optimize.c
@@ -1039,9 +1039,9 @@ static {{c_ret_type}} {{cfunc_name}}(PyObject *op1, PyObject *op2, CYTHON_UNUSED
}
{{endif}}
// copied from floatobject.c in Py3.5:
-// PyFPE_START_PROTECT("{{op.lower() if not op.endswith('Divide') else 'divide'}}", return NULL)
+// PyFPE_START_PROTECT("{{op.lower() if not op.endswith('Divide') else 'divide'}}", return NULL)
result = ((double)a) {{c_op}} (double)b;
-// PyFPE_END_PROTECT(result)
+// PyFPE_END_PROTECT(result)
return PyFloat_FromDouble(result);
{{endif}}
}
@@ -1178,7 +1178,7 @@ static {{c_ret_type}} {{cfunc_name}}(PyObject *op1, PyObject *op2, double floatv
{{else}}
// copied from floatobject.c in Py3.5:
{{if order == 'CObj' and c_op in '%/'}}{{zerodiv_check('b')}}{{endif}}
-// PyFPE_START_PROTECT("{{op.lower() if not op.endswith('Divide') else 'divide'}}", return NULL)
+// PyFPE_START_PROTECT("{{op.lower() if not op.endswith('Divide') else 'divide'}}", return NULL)
{{if c_op == '%'}}
result = fmod(a, b);
if (result)
@@ -1188,7 +1188,7 @@ static {{c_ret_type}} {{cfunc_name}}(PyObject *op1, PyObject *op2, double floatv
{{else}}
result = a {{c_op}} b;
{{endif}}
-// PyFPE_END_PROTECT(result)
+// PyFPE_END_PROTECT(result)
return PyFloat_FromDouble(result);
{{endif}}
}
diff --git a/contrib/tools/ragel6/cdcodegen.cpp b/contrib/tools/ragel6/cdcodegen.cpp
index da8e801a39..9e784e3f58 100644
--- a/contrib/tools/ragel6/cdcodegen.cpp
+++ b/contrib/tools/ragel6/cdcodegen.cpp
@@ -704,11 +704,11 @@ string CCodeGen::PTR_CONST_END()
std::ostream &CCodeGen::OPEN_ARRAY( string type, string name )
{
- out << "#if defined(__GNUC__)\n";
- out << "static __attribute__((used)) const " << type << " " << name << "[] = {\n";
- out << "#else\n";
+ out << "#if defined(__GNUC__)\n";
+ out << "static __attribute__((used)) const " << type << " " << name << "[] = {\n";
+ out << "#else\n";
out << "static const " << type << " " << name << "[] = {\n";
- out << "#endif\n";
+ out << "#endif\n";
return out;
}