Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[codacy] Don't use assert for error checking.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 4 Apr 2019 10:08:19 +0000 (12:08 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 4 Apr 2019 10:12:23 +0000 (12:12 +0200)
src/simix/simcalls.py

index ae5f79a..d757d81 100755 (executable)
@@ -193,7 +193,8 @@ def parse(fn):
             continue
         match = re.match(
             r'^(\S+)\s+([^\)\(\s]+)\s*\(*(.*)\)\s*(\[\[.*\]\])?\s*;\s*?$', line)
-        assert match, line
+        if not match:
+            raise AssertionError(line)
         ret, name, args, attrs = match.groups()
         sargs = []
         if not re.match(r"^\s*$", args):
@@ -217,7 +218,7 @@ def parse(fn):
                 elif attr == "nohandler":
                     handler = False
                 else:
-                    assert False, "Unknown attribute %s in: %s" % (attr, line)
+                    raise AssertionError("Unknown attribute %s in: %s" % (attr, line))
         sim = Simcall(name, handler, Arg('result', ret), sargs, ans)
         if resdi is None:
             simcalls.append(sim)