<HTML><BODY><div>Hi, Igor!</div><div>Thanks for the patch!</div><div>LGTM</div><div data-signature-widget="container"><div data-signature-widget="content"><div>--<br>Best regards,</div><div>Maxim Kokryashkin</div></div></div><div> </div><div> </div><blockquote style="border-left:1px solid #0857A6; margin:10px; padding:0 0 0 10px;"><div> <blockquote style="border-left:1px solid #0857A6; margin:10px; padding:0 0 0 10px;"><div id=""><div class="js-helper js-readmsg-msg"><div><div id="style_16914165351646762873_BODY">Fixed 2 occurrences of E275 ("missing whitespace after keyword") error<br>reported by pycodestyle[1].<br><br>[1]: <a href="https://www.flake8rules.com/rules/E275.html" target="_blank">https://www.flake8rules.com/rules/E275.html</a><br><br>Signed-off-by: Igor Munkin <<a href="/compose?To=imun@tarantool.org">imun@tarantool.org</a>><br>---<br><br>**NB**: This patch will be placed between "[PATCH luajit 06/15] test:<br>fix E251 errors by pycodestyle" and "[PATCH luajit 08/15] test: fix E302<br>errors by pycodestyle" on the branch.<br><br>CI: <a href="https://github.com/tarantool/luajit/actions/runs/5785962723/job/15679677849" target="_blank">https://github.com/tarantool/luajit/actions/runs/5785962723/job/15679677849</a><br><br> src/luajit-gdb.py | 2 +-<br> src/luajit_lldb.py | 2 +-<br> 2 files changed, 2 insertions(+), 2 deletions(-)<br><br>diff --git a/src/luajit-gdb.py b/src/luajit-gdb.py<br>index b7902d53..f9623e53 100644<br>--- a/src/luajit-gdb.py<br>+++ b/src/luajit-gdb.py<br>@@ -335,7 +335,7 @@ def funcproto(func):<br> <br> def gclistlen(root, end=0x0):<br>     count = 0<br>- while(gcref(root) != end):<br>+ while (gcref(root) != end):<br>         count += 1<br>         root = gcnext(root)<br>     return count<br>diff --git a/src/luajit_lldb.py b/src/luajit_lldb.py<br>index 94f54a59..53f3abca 100644<br>--- a/src/luajit_lldb.py<br>+++ b/src/luajit_lldb.py<br>@@ -388,7 +388,7 @@ def gcnext(obj):<br> <br> def gclistlen(root, end=0x0):<br>     count = 0<br>- while(gcref(root) != end):<br>+ while (gcref(root) != end):<br>         count += 1<br>         root = gcnext(root)<br>     return count<br>--<br>2.30.2</div></div></div></div></blockquote><div> </div></div></blockquote></BODY></HTML>