[libcxx-commits] [libcxx] [libc++] Add a script to synchronize status-tracking CSVs with Github issues (PR #101704)

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Mon Aug 5 08:25:33 PDT 2024


================
@@ -0,0 +1,229 @@
+#!/usr/bin/env python3
+
+from typing import List, Dict, Tuple, Optional
+import csv
+import itertools
+import json
+import os
+import pathlib
+import re
+import subprocess
+
+# Number of the 'Libc++ Standards Conformance' project on Github
+LIBCXX_CONFORMANCE_PROJECT = '31'
----------------
ldionne wrote:

^ This. I am not aware of any way to refer to a project by name, and given that this is basically like an issue number, I think it's the best way to refer to it. Although I agree that it looks weird at first.

https://github.com/llvm/llvm-project/pull/101704


More information about the libcxx-commits mailing list