Deals with some Pylint missing-module-docstrings.
#!/usr/bin/python3
+"""
+Generate a table of the Graphviz compile configuration for different platforms
+from files generated by the ./configure command.
+"""
+
from argparse import ArgumentParser
import os
import json
#!/usr/bin/env python3
-#
-# Graphviz regression test driver
-#
-# Also relies on strps.awk.
-#
-# TODO:
-# Report differences with shared version and with new output.
+
+"""
+Graphviz regression test driver
+
+Also relies on strps.awk.
+
+TODO:
+ Report differences with shared version and with new output.
+"""
import filecmp
import os
-# tests that examples provided with Graphviz compile correctly
+"""tests that examples provided with Graphviz compile correctly"""
import os
from pathlib import Path
-# test ../lib/vmalloc
+"""test ../lib/vmalloc"""
import os
from pathlib import Path
#!/usr/bin/env python3
-# display the kernel module dependencies
+"""
+display the kernel module dependencies
-# author: Michael Hohn <mhhohn@lbl.gov>
-# based on: modgraph.tcl by John Ellson <ellson@research.att.com>
+author: Michael Hohn <mhhohn@lbl.gov>
+ based on: modgraph.tcl by John Ellson <ellson@research.att.com>
+"""
import gv # pylint: disable=import-error