gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] gzz/gfx/librenderables renderables.py


From: Janne V. Kujala
Subject: [Gzz-commits] gzz/gfx/librenderables renderables.py
Date: Fri, 18 Oct 2002 11:09:49 -0400

CVSROOT:        /cvsroot/gzz
Module name:    gzz
Changes by:     Janne V. Kujala <address@hidden>        02/10/18 11:09:24

Modified files:
        gfx/librenderables: renderables.py 

Log message:
        Fix empty params parsing

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/gfx/librenderables/renderables.py.diff?tr1=1.106&tr2=1.107&r1=text&r2=text

Patches:
Index: gzz/gfx/librenderables/renderables.py
diff -c gzz/gfx/librenderables/renderables.py:1.106 
gzz/gfx/librenderables/renderables.py:1.107
*** gzz/gfx/librenderables/renderables.py:1.106 Fri Oct 18 10:02:14 2002
--- gzz/gfx/librenderables/renderables.py       Fri Oct 18 11:09:24 2002
***************
*** 1287,1293 ****
  for r in rs:
      ExtraClass = None
      for k in r.keys() : locals()[k] = r[k]
!     params = [param.strip().split(" ") for param in Params.split(",") if 
param != ""]
      idparams = [param for param in params if param[0] in idded]
      
      cls += (" static public class " + Name + " extends GL.Renderable" 
--- 1287,1293 ----
  for r in rs:
      ExtraClass = None
      for k in r.keys() : locals()[k] = r[k]
!     params = [param.strip().split(" ") for param in Params.split(",") if 
param.strip() != ""]
      idparams = [param for param in params if param[0] in idded]
      
      cls += (" static public class " + Name + " extends GL.Renderable" 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]