[libvirt] [test-API 3/3 v2] Remove the redundant empty comment line

Osier Yang jyang at redhat.com
Tue Apr 17 11:32:37 UTC 2012


---
v1 ~ v2:
  Changes to be consistent with 2/3's updating
---
 activityfilter.py          |    4 ----
 casecfgcheck.py            |    3 ---
 dist/redhat/env_inspect.py |    3 ---
 env_clear.py               |    3 ---
 exception.py               |    2 --
 generator.py               |    3 ---
 libvirt-test-api.py        |    3 ---
 logxmlparser.py            |    2 --
 mapper.py                  |    3 ---
 parser.py                  |    3 ---
 process.py                 |    2 --
 proxy.py                   |    4 +---
 utils/XMLParser.py         |    2 --
 utils/check.py             |    2 --
 utils/env_parser.py        |    2 --
 utils/format.py            |    2 --
 utils/log.py               |    2 --
 utils/utils.py             |    3 ---
 utils/xmlbuilder.py        |    2 --
 utils/xmlgenerator.py      |    2 --
 20 files changed, 1 insertions(+), 51 deletions(-)

diff --git a/activityfilter.py b/activityfilter.py
index 7351625..1326948 100644
--- a/activityfilter.py
+++ b/activityfilter.py
@@ -15,10 +15,6 @@
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
 
-#
-#
-
-
 class Filter(object):
     """filter activity list to form various data list"""
     def __init__(self, activities_list):
diff --git a/casecfgcheck.py b/casecfgcheck.py
index 9f5f88c..5e513e1 100644
--- a/casecfgcheck.py
+++ b/casecfgcheck.py
@@ -15,9 +15,6 @@
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
 
-#
-#
-
 import proxy
 
 class CaseCfgCheck(object):
diff --git a/dist/redhat/env_inspect.py b/dist/redhat/env_inspect.py
index b3e484f..b9b8ed0 100644
--- a/dist/redhat/env_inspect.py
+++ b/dist/redhat/env_inspect.py
@@ -14,12 +14,9 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#
 #
 # Filename: envinspect.py
 # Description: check the testing environment and state of libvirt as well
-#
 
 import commands
 import libvirt
diff --git a/env_clear.py b/env_clear.py
index d34c701..ed862db 100644
--- a/env_clear.py
+++ b/env_clear.py
@@ -14,12 +14,9 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#
 #
 # This module matches the reference of clearing function from each testcase
 # to the corresponding testcase's argument in the order of testcase running
-#
 
 import mapper
 from utils import log
diff --git a/exception.py b/exception.py
index 4375c59..3625dab 100644
--- a/exception.py
+++ b/exception.py
@@ -14,8 +14,6 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#
 #
 # Filename: exception.py
 # Summary: the exception class
diff --git a/generator.py b/generator.py
index ea57c41..53febde 100644
--- a/generator.py
+++ b/generator.py
@@ -14,12 +14,9 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#
 #
 # This module to initilize log module and match testcase function from
 # proxy with corresponding argument to form a callable function.
-#
 
 import time
 import fcntl
diff --git a/libvirt-test-api.py b/libvirt-test-api.py
index 607663a..b7b2b74 100644
--- a/libvirt-test-api.py
+++ b/libvirt-test-api.py
@@ -15,9 +15,6 @@
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
 
-#
-#
-
 import os
 import sys
 import time
diff --git a/logxmlparser.py b/logxmlparser.py
index a749a00..ed45594 100644
--- a/logxmlparser.py
+++ b/logxmlparser.py
@@ -14,8 +14,6 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#
 #
 # Filename: xmlparser.py
 # Summary: generate xmlfile for log management
diff --git a/mapper.py b/mapper.py
index 7682e5d..f09e569 100644
--- a/mapper.py
+++ b/mapper.py
@@ -14,12 +14,9 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#
 #
 # This module help form new lists from original list generated by module parser,
 # the purpose is to get useful information about a testrun.
-#
 
 import copy
 
diff --git a/parser.py b/parser.py
index 6bed096..b0bad3b 100644
--- a/parser.py
+++ b/parser.py
@@ -14,11 +14,8 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#
 #
 # This module is for configuration file parsing, to generate a case list.
-#
 
 import re
 import os
diff --git a/process.py b/process.py
index 4bcfcfa..0edc9ae 100644
--- a/process.py
+++ b/process.py
@@ -14,8 +14,6 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#
 #
 # Filename: process.py
 # Summary: multiprocessing module
diff --git a/proxy.py b/proxy.py
index da4d7ba..7e81319 100644
--- a/proxy.py
+++ b/proxy.py
@@ -14,11 +14,9 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#
 #
 # Generate a list of callable function references.
-
+#
 # The proxy examines the list of unique test cases, received from the
 # generator and import each test case from appropriate module directory.
 
diff --git a/utils/XMLParser.py b/utils/XMLParser.py
index c9000a7..b254023 100644
--- a/utils/XMLParser.py
+++ b/utils/XMLParser.py
@@ -14,8 +14,6 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#
 #
 # Filename: XMLParser.py
 # Summary: parse and xml document into a python dictionary
diff --git a/utils/check.py b/utils/check.py
index 7e2abb7..9734fc9 100644
--- a/utils/check.py
+++ b/utils/check.py
@@ -14,8 +14,6 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#
 #
 # Filename: check.py
 # Summary: basic check operation needed by test
diff --git a/utils/env_parser.py b/utils/env_parser.py
index e0ec598..6e49e50 100644
--- a/utils/env_parser.py
+++ b/utils/env_parser.py
@@ -14,8 +14,6 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#
 #
 # Filename: env_parser.py
 # Summary: parse the env configuration file
diff --git a/utils/format.py b/utils/format.py
index 710e681..b72c987 100644
--- a/utils/format.py
+++ b/utils/format.py
@@ -14,8 +14,6 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#
 #
 # Filename: format.py
 # Summary: generate specified kind of format string
diff --git a/utils/log.py b/utils/log.py
index 4d0a037..3ca8729 100644
--- a/utils/log.py
+++ b/utils/log.py
@@ -14,8 +14,6 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#
 #
 # Filename: log.py
 # Summary: log file operation
diff --git a/utils/utils.py b/utils/utils.py
index f1ec6c6..124c986 100644
--- a/utils/utils.py
+++ b/utils/utils.py
@@ -15,9 +15,6 @@
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
 
-#
-#
-
 import os
 import re
 import sys
diff --git a/utils/xmlbuilder.py b/utils/xmlbuilder.py
index 3c55375..a8a9871 100644
--- a/utils/xmlbuilder.py
+++ b/utils/xmlbuilder.py
@@ -14,8 +14,6 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#
 #
 # Filename: xmlbuilder.py
 # Summary: operation for building domain xml
diff --git a/utils/xmlgenerator.py b/utils/xmlgenerator.py
index 24ab85e..d93f58c 100644
--- a/utils/xmlgenerator.py
+++ b/utils/xmlgenerator.py
@@ -14,8 +14,6 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-#
 #
 # Filename: xmlgenerator.py
 # Summary: generate domain xml
-- 
1.7.7.3




More information about the libvir-list mailing list