Closed GoogleCodeExporter closed 9 years ago
I suspect this is the fix but I don't know swig and can't get it working so I
can't test it.
Index: Box2D/Box2D_kwargs.i
===================================================================
--- Box2D/Box2D_kwargs.i (revision 376)
+++ Box2D/Box2D_kwargs.i (working copy)
@@ -20,7 +20,7 @@
%pythoncode %{
def _init_kwargs(self, **kwargs):
- for key, value in kwargs.iteritems():
+ for key, value in kwargs.items():
try:
setattr(self, key, value)
except:
Original comment by charlie....@gmail.com
on 19 Jan 2014 at 5:55
Thanks for the report. I'll switch over to using items() exclusively from now
on. Should be fixed in rev 377
Original comment by sir...@gmail.com
on 17 May 2014 at 6:59
Original issue reported on code.google.com by
charlie....@gmail.com
on 19 Jan 2014 at 4:46