[PATCH] D149088: [clang-format] Add run-clang-format.py script.

Eugene Zelenko via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Apr 24 12:54:21 PDT 2023


Eugene.Zelenko added inline comments.


================
Comment at: clang/tools/run-clang-format.py:1
+#!/usr/bin/env python3
+#
----------------
Looks like Windows en of lines were mixed with UNIX ones.


================
Comment at: clang/tools/run-clang-format.py:26
+
+from __future__ import print_function
+import argparse
----------------
Is it really necessary since Python 3 is specified explicitly?


================
Comment at: clang/tools/run-clang-format.py:30
+import os
+import multiprocessing
+import queue
----------------
Should be before `os`.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D149088/new/

https://reviews.llvm.org/D149088



More information about the cfe-commits mailing list