The Python topic to search for is 'tuple unpacking' http://docs.python.org/tutorial/controlflow.html?highlight=unpacking#unpacking-argument-lists
However, tazg has covered everything you need to know for Python 2.6 / 2.7. On Apr 21, 7:32 am, tazg <[email protected]> wrote: > On Apr 21, 1:23 am, George Oliver <[email protected]> wrote: > > > It seems like it breaks up the array into individual arguments but > > does it do something else? > > That's exactly what it does. In other words it's a shortcut for: > glClearColor(color[0], color[1], color[2]). > > You can do the same with ** and a dictionary, for example, > > dic = {'a':1, 'b':2, 'c':3} > func(**dic) > > is the same as > > func(a=1, b=2, c=3) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pyglet-users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/pyglet-users?hl=en -~----------~----~----~----~------~----~------~--~---
