diff options
author | rnefyodov <rnefyodov@yandex-team.ru> | 2022-02-10 16:47:17 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:17 +0300 |
commit | c753751b693cf7c481c0292912e2b7536fa6d36a (patch) | |
tree | 9814fbd1c3effac9b8377c5d604b367b14e2db55 /contrib | |
parent | c22320e8c4f3d7be38c504706f137034e91d31e6 (diff) | |
download | ydb-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.make | 2 | ||||
-rw-r--r-- | contrib/python/ya.make | 6 | ||||
-rw-r--r-- | contrib/tools/cython/Cython/Utility/Optimize.c | 8 | ||||
-rw-r--r-- | contrib/tools/ragel6/cdcodegen.cpp | 8 |
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; } |