[PATCH] D80627: [clang-format] Create a python documentation tool to generate a summary of the clang-format status for the whole of the LLVM project
Marek Kurdej via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu May 28 09:15:48 PDT 2020
curdeius added inline comments.
================
Comment at: clang/docs/tools/generate_formatted_state.py:17
+with open(DOC_FILE, 'wb') as output:
+ output.write(".. raw:: html\n")
+ output.write("\n")
----------------
It will still not work with Python 3, you need to pass `bytes` to `write()` method.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D80627/new/
https://reviews.llvm.org/D80627
More information about the cfe-commits
mailing list