]> git.lizzy.rs Git - rust.git/blobdiff - util/export.py
Auto merge of #4266 - uHOOCCOOHu:fix/async_fn_lifetime, r=flip1995
[rust.git] / util / export.py
index ae8e4a72c08d8827efeed86d9f27844fbfc719f5..06b867df396103cacf65d2e376d008b8e643424b 100755 (executable)
@@ -1,6 +1,8 @@
 #!/usr/bin/env python
+
 # Build the gh-pages
 
+from collections import OrderedDict
 import re
 import sys
 import json
@@ -18,29 +20,31 @@ This lint has the following configuration variables:
 def parse_lint_def(lint):
     lint_dict = {}
     lint_dict['id'] = lint.name
+    lint_dict['group'] = lint.group
     lint_dict['level'] = lint.level
-    lint_dict['docs'] = {}
+    lint_dict['docs'] = OrderedDict()
 
     last_section = None
 
     for line in lint.doc:
-        if len(line.strip()) == 0:
-            continue
-
         match = re.match(lint_subheadline, line)
         if match:
             last_section = match.groups()[0]
-        if match:
             text = match.groups()[1]
         else:
             text = line
 
         if not last_section:
-            log.warn("Skipping comment line as it was not preceded by a heading")
+            log.warning("Skipping comment line as it was not preceded by a heading")
             log.debug("in lint `%s`, line `%s`", lint.name, line)
 
-        lint_dict['docs'][last_section] = \
-            (lint_dict['docs'].get(last_section, "") + "\n" + text).strip()
+        if last_section not in lint_dict['docs']:
+            lint_dict['docs'][last_section] = ""
+
+        lint_dict['docs'][last_section] += text + "\n"
+
+    for section in lint_dict['docs']:
+        lint_dict['docs'][section] = lint_dict['docs'][section].strip()
 
     return lint_dict