[Mesa-dev] [PATCH 35/41] glapi: glX_proto_send.py: Don't shadow builtins.
Dylan Baker
baker.dylan.c at gmail.com
Fri Apr 1 00:04:52 UTC 2016
str is a builtin in python, although python doesn't prevent builtins
from being shadowed, its still a bad idea.
Signed-off-by: Dylan Baker <dylanx.c.baker at intel.com>
---
src/mapi/glapi/gen/glX_proto_send.py | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/mapi/glapi/gen/glX_proto_send.py b/src/mapi/glapi/gen/glX_proto_send.py
index 8ea799a..8fe0876 100644
--- a/src/mapi/glapi/gen/glX_proto_send.py
+++ b/src/mapi/glapi/gen/glX_proto_send.py
@@ -38,18 +38,18 @@ import glX_proto_common
import license
-def convertStringForXCB(str):
+def convertStringForXCB(string_):
tmp = ""
special = ["ARB"]
i = 0
- while i < len(str):
- if str[i:i+3] in special:
- tmp = '%s_%s' % (tmp, str[i:i+3].lower())
+ while i < len(string_):
+ if string_[i:i+3] in special:
+ tmp = '%s_%s' % (tmp, string_[i:i+3].lower())
i = i + 2
- elif str[i].isupper():
- tmp = '%s_%s' % (tmp, str[i].lower())
+ elif string_[i].isupper():
+ tmp = '%s_%s' % (tmp, string_[i].lower())
else:
- tmp = '%s%s' % (tmp, str[i])
+ tmp = '%s%s' % (tmp, string_[i])
i += 1
return tmp
--
2.8.0
More information about the mesa-dev
mailing list