(cir, name, cirType)
| 321 | _CIRCUITS[name].errors += n |
| 322 | |
| 323 | def _saveCircuit(cir, name, cirType): |
| 324 | global _CIRCUITS, _USERCIRCUITS, _SLiCAPCIRCUITS |
| 325 | if cirType == 'system': |
| 326 | _SLiCAPCIRCUITS[name] = cir |
| 327 | elif cirType == 'user': |
| 328 | _USERCIRCUITS[name] = cir |
| 329 | elif cirType == 'main': |
| 330 | _CIRCUITS[name] = cir |
| 331 | |
| 332 | def _addElement(el, name, cirType): |
| 333 | global _CIRCUITS, _USERCIRCUITS, _SLiCAPCIRCUITS |
no outgoing calls
no test coverage detected