std::vector and std::string items
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)
Showing
Please register or sign in to comment
