]> granicus.if.org Git - graphviz/commitdiff
update file comments on some Python files so they are recognized by Pylint
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 3 Jul 2021 02:37:59 +0000 (19:37 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 9 Jul 2021 04:46:51 +0000 (21:46 -0700)
Deals with some Pylint missing-module-docstrings.

ci/generate_configuration_table.py
rtest/rtest.py
rtest/test_examples.py
rtest/test_vmalloc.py
tclpkg/gv/demo/modgraph.py

index 3be81d349d52e286c907fade389dff64e1bbec55..f8f78817ae6ecd0e42df8168bdb5b85e45dba853 100755 (executable)
@@ -1,5 +1,10 @@
 #!/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
index bb87bbb32c592c664f90955976c9404a5f8f2f6a..2e1859aa19397d1007b4b004194e696f73d323a3 100755 (executable)
@@ -1,11 +1,13 @@
 #!/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
index 36ac50296c26ffd25c827632fd4cdf754f921d74..9f98900437dbed8bce2da406948a13d5c3e3ae65 100644 (file)
@@ -1,4 +1,4 @@
-# tests that examples provided with Graphviz compile correctly
+"""tests that examples provided with Graphviz compile correctly"""
 
 import os
 from pathlib import Path
index 347bbf5682377517211c279268446ee7297a3b5a..829166f03d2111edd2f7238f1d120f9d599ee7e0 100644 (file)
@@ -1,4 +1,4 @@
-# test ../lib/vmalloc
+"""test ../lib/vmalloc"""
 
 import os
 from pathlib import Path
index c23b938bc2d1195717f8e281f3b686e414ce6340..a099156a2bc9ec15145e5fd5719342cee795fce3 100755 (executable)
@@ -1,9 +1,11 @@
 #!/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