diff options
author | Mathieu Bridon <[email protected]> | 2018-07-05 15:17:35 +0200 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-07-24 11:07:04 -0700 |
commit | 1d209275c29886bac218d77135f61ae52464a1be (patch) | |
tree | 4c6799c2e035b47743303eed6b4e8b75e737b18a /src/mapi/glapi/gen/gl_procs.py | |
parent | 9b3474249513267bb4e50d450c70e688bffbc082 (diff) |
python: Better check for keys in dicts
Python 3 lost the dict.has_key() method. Instead it requires using the
"in" operator.
This is also compatible with Python 2.
Signed-off-by: Mathieu Bridon <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mapi/glapi/gen/gl_procs.py')
-rw-r--r-- | src/mapi/glapi/gen/gl_procs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/gen/gl_procs.py b/src/mapi/glapi/gen/gl_procs.py index a7bc909ce28..5718f42ab61 100644 --- a/src/mapi/glapi/gen/gl_procs.py +++ b/src/mapi/glapi/gen/gl_procs.py @@ -135,7 +135,7 @@ typedef struct { for n in func.entry_points: cat, num = api.get_category_for_name(n) if (cat.startswith("es") or cat.startswith("GL_OES")): - if not categories.has_key(cat): + if cat not in categories: categories[cat] = [] proto = 'GLAPI %s GLAPIENTRY %s(%s);' \ % (func.return_type, "gl" + n, func.get_parameter_string(n)) |