Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[python/pep8] Use "not in" to test for membership.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sun, 10 Nov 2019 15:06:24 +0000 (16:06 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sun, 10 Nov 2019 16:52:14 +0000 (17:52 +0100)
Also break long lines.

examples/deprecated/java/app/bittorrent/generate.py
examples/deprecated/msg/dht-kademlia/generate.py
examples/deprecated/msg/dht-pastry/generate.py
examples/s4u/dht-kademlia/generate.py
teshsuite/msg/app-bittorrent/generate.py

index 556e2b4..feaea00 100755 (executable)
@@ -30,17 +30,18 @@ all_ids = [42]
 sys.stdout.write("<?xml version='1.0'?>\n"
                  "<!DOCTYPE platform SYSTEM \"https://simgrid.org/simgrid.dtd\">\n"
                  "<platform version=\"3\">\n"
-                 "  <process host=\"c-0.me\" function=\"bittorrent.Tracker\"><argument value=\"%d\"/></process>\n" % end_date)
+                 "  <process host=\"c-0.me\" function=\"bittorrent.Tracker\"><argument value=\"%d\"/></process>\n" %
+                 end_date)
 
 for i in range(1, nb_nodes):
 
     ok = False
     while not ok:
         my_id = random.randint(0, max_id)
-        ok = not my_id in all_ids
+        ok = my_id not in all_ids
     start_date = i * 10
-    line = "  <process host=\"c-%d.me\" function=\"bittorrent.Peer\"><argument value=\"%d\" /><argument value=\"%d\" />" % (
-        i, my_id, end_date)
+    line = "  <process host=\"c-%d.me\" function=\"bittorrent.Peer\"><argument value=\"%d\" />" \
+           "<argument value=\"%d\" />" % (i, my_id, end_date)
     if random.randint(0, 100) < seed_percentage:
         line += "<argument value=\"1\" />"
     line += "</process>\n"
index 5e920cc..bf86345 100755 (executable)
@@ -30,7 +30,7 @@ for i in range(1, nb_nodes):
     ok = False
     while not ok:
         my_id = random.randint(0, max_id)
-        ok = not my_id in all_ids
+        ok = my_id not in all_ids
     known_id = all_ids[random.randint(0, len(all_ids) - 1)]
     start_date = i * 10
     line = "  <process host=\"node-%d.simgrid.org\" function=\"node\">\n    <argument value=\"%s\"/>"\
index d80d1ee..cc0d24f 100755 (executable)
@@ -29,19 +29,21 @@ all_ids = [42]
 sys.stdout.write("<?xml version='1.0'?>\n"
                  "<!DOCTYPE platform SYSTEM \"https://simgrid.org/simgrid.dtd\">\n"
                  "<platform version=\"3\">\n"
-                 "  <process host=\"node-0.simgrid.org\" function=\"node\"><argument value=\"42\"/><argument value=\"%d\"/></process>\n" % end_date)
+                 "  <process host=\"node-0.simgrid.org\" function=\"node\"><argument value=\"42\"/>"
+                 "<argument value=\"%d\"/></process>\n" % end_date)
 
 for i in range(1, nb_nodes):
 
     ok = False
     while not ok:
         my_id = random.randint(0, max_id)
-        ok = not my_id in all_ids
+        ok = my_id not in all_ids
 
     known_id = all_ids[random.randint(0, len(all_ids) - 1)]
     start_date = i * 10
-    line = "  <process host=\"node-%d.simgrid.org\" function=\"node\"><argument value=\"%d\" /><argument value=\"%d\" /><argument value=\"%d\" /><argument value=\"%d\" /></process>\n" % (
-        i, my_id, known_id, start_date, end_date)
+    line = "  <process host=\"node-%d.simgrid.org\" function=\"node\"><argument value=\"%d\" />" \
+           "<argument value=\"%d\" /><argument value=\"%d\" /><argument value=\"%d\" /></process>\n" % (
+               i, my_id, known_id, start_date, end_date)
     sys.stdout.write(line)
     all_ids.append(my_id)
 
index 5e920cc..bf86345 100755 (executable)
@@ -30,7 +30,7 @@ for i in range(1, nb_nodes):
     ok = False
     while not ok:
         my_id = random.randint(0, max_id)
-        ok = not my_id in all_ids
+        ok = my_id not in all_ids
     known_id = all_ids[random.randint(0, len(all_ids) - 1)]
     start_date = i * 10
     line = "  <process host=\"node-%d.simgrid.org\" function=\"node\">\n    <argument value=\"%s\"/>"\
index fde8f93..04e689e 100755 (executable)
@@ -38,7 +38,7 @@ for i in range(1, nb_nodes):
     ok = False
     while not ok:
         my_id = random.randint(0, max_id)
-        ok = not my_id in all_ids
+        ok = my_id not in all_ids
     start_date = i * 10
     line = "  <process host=\"node-%d.simgrid.org\" function=\"peer\">\n" % i
     line += "    <argument value=\"%d\"/>\n    <argument value=\"%d\"/>\n" % (