[clang] [clang] Add sections to C++ DR status page (PR #165749)
Jannick Kremer via cfe-commits
cfe-commits at lists.llvm.org
Sat Nov 1 00:51:27 PDT 2025
================
@@ -10,26 +10,36 @@ output = os.path.join(clang_www_dir, 'cxx_dr_status.html')
dr_test_dir = os.path.join(clang_www_dir, '../test/CXX/drs')
class DR:
- def __init__(self, section, issue, url, status, title):
- self.section, self.issue, self.url, self.status, self.title = \
- section, issue, url, status, title
+ def __init__(self, *, section_number, section_name, section_link, number, url, status, liaison, title):
----------------
DeinAlptraum wrote:
Is there any reason you are expressly blocking any use of this function with positional arguments?
https://github.com/llvm/llvm-project/pull/165749
More information about the cfe-commits
mailing list