This patch is
Reviewed-by: Ian Romanick
On 03/31/2016 05:04 PM, Dylan Baker wrote:
> In python 2 range returns a new list, which is okay for very small
> values, but can get quite expensive for larger lists. xrange on the
> other hand is an iterator, which requires less memory and processing
> p
In python 2 range returns a new list, which is okay for very small
values, but can get quite expensive for larger lists. xrange on the
other hand is an iterator, which requires less memory and processing
power.
Signed-off-by: Dylan Baker
---
src/mapi/glapi/gen/glX_proto_size.py | 2 +-
src/ma