diff options
author | Brian Paul <[email protected]> | 2004-10-28 21:11:02 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-10-28 21:11:02 +0000 |
commit | 98fa2bf3641633bbde6a8f037c242bc3cd5ec0d9 (patch) | |
tree | 2eabb4d9b41ab287ccf3051a3a50f9577c46ac17 /src | |
parent | fa557e904d02c4869cd1d57f2f09437c3585c7d2 (diff) |
minor clean-ups, found with pychecker
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/glapi/gl_XML.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/glapi/gl_XML.py b/src/mesa/glapi/gl_XML.py index ff9bc8f4a4d..55bbddafa5b 100644 --- a/src/mesa/glapi/gl_XML.py +++ b/src/mesa/glapi/gl_XML.py @@ -29,7 +29,7 @@ from xml.sax import saxutils from xml.sax import make_parser from xml.sax.handler import feature_namespaces -import sys, re +import re class glItem: """Generic class on which all other API entity types are based.""" @@ -74,7 +74,6 @@ class glItem: return 1 else: return 0 - return def get_category_define(self): return self.category |