python: Stop using the Python 2 exception syntax
authorMathieu Bridon <bochecha@daitauha.fr>
Fri, 6 Jul 2018 10:13:36 +0000 (12:13 +0200)
committerDylan Baker <dylan@pnwbakers.com>
Fri, 6 Jul 2018 17:18:43 +0000 (10:18 -0700)
We could have made this compatible with Python 3 by using:

    except Exception as e:

But since none of this code actually uses the exception objects, let's
just drop them entirely.

Signed-off-by: Mathieu Bridon <bochecha@daitauha.fr>
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/mapi/glapi/gen/glX_XML.py
src/mapi/glapi/gen/gl_XML.py
src/mapi/glapi/gen/gl_marshal.py
src/mapi/glapi/gen/gl_marshal_h.py
src/mesa/main/get_hash_generator.py

index b6d305c87970af5a7e87d1600f62e85999b5099c..d09370a508fa475e4de77773d756eb8c5b522a2a 100644 (file)
@@ -470,7 +470,7 @@ class glx_function(gl_XML.gl_function):
     def needs_reply(self):
         try:
             x = self._needs_reply
-        except Exception, e:
+        except Exception:
             x = 0
             if self.return_type != 'void':
                 x = 1
index 3a191abe0d6c231a43535232d5ceca93b784c398..bfeacf13863765c5f3aefee521f13d19b01236d9 100644 (file)
@@ -284,7 +284,7 @@ def classify_category(name, number):
 
     try:
         core_version = float(name)
-    except Exception,e:
+    except Exception:
         core_version = 0.0
 
     if core_version > 0.0:
@@ -365,7 +365,7 @@ class gl_enum( gl_item ):
         else:
             try:
                 c = int(temp)
-            except Exception,e:
+            except Exception:
                 raise RuntimeError('Invalid count value "%s" for enum "%s" in function "%s" when an integer was expected.' % (temp, self.name, n))
 
             self.default_count = c
@@ -426,7 +426,7 @@ class gl_parameter(object):
             count = int(c)
             self.count = count
             self.counter = None
-        except Exception,e:
+        except Exception:
             count = 1
             self.count = 0
             self.counter = c
index e9dd2c4f78687b1165772ac079909538e33e25b5..5b35357ac548dc358f2e9c05f969f325dad70319 100644 (file)
@@ -353,7 +353,7 @@ if __name__ == '__main__':
 
     try:
         (args, trail) = getopt.getopt(sys.argv[1:], 'm:f:')
-    except Exception,e:
+    except Exception:
         show_usage()
 
     for (arg,val) in args:
index 6490595a00f49c0a32f167a35287e2a2fe0beed2..a7a9eda5731340a29072ec638e34d0dbd772d242 100644 (file)
@@ -74,7 +74,7 @@ if __name__ == '__main__':
 
     try:
         (args, trail) = getopt.getopt(sys.argv[1:], 'm:f:')
-    except Exception,e:
+    except Exception:
         show_usage()
 
     for (arg,val) in args:
index 86c6771066a83d8ff2d4a39a91fcb578369308b2..facdccd8a53f3637686dbc2a145baf9f31bf06f0 100644 (file)
@@ -201,7 +201,7 @@ def show_usage():
 if __name__ == '__main__':
    try:
       (opts, args) = getopt.getopt(sys.argv[1:], "f:")
-   except Exception,e:
+   except Exception:
       show_usage()
 
    if len(args) != 0: