Add a routine to the library.
(self, rname)
| 127 | self.names_to_routines[rname] = routine |
| 128 | |
| 129 | def addRoutine(self, rname): |
| 130 | """Add a routine to the library. |
| 131 | """ |
| 132 | self.getRoutine(rname) |
| 133 | |
| 134 | def getRoutine(self, rname): |
| 135 | """Get a routine from the library. Will add if it's not found. |
no test coverage detected