• Miguel Angel Ajo's avatar
    std::vector and std::string items · 9398eb97
    Miguel Angel Ajo authored
    DLIST iterator code, now we can do:
    
        for module in pcb.m_Modules:
        	print module.GetReference()
    
    instead of:
    
        module = pcb.m_Modules
    
        while module:
    	print module.GetReference()
    	module = module.Next()
    
    or even:
        module_list = list(pcb.m_Modules)
    9398eb97
Name
Last commit
Last update
..
kicad.i Loading commit data...
python_scripting.cpp Loading commit data...
python_scripting.h Loading commit data...
wx.i Loading commit data...
wx_python_helpers.cpp Loading commit data...
wx_python_helpers.h Loading commit data...