(self)
| 9 | |
| 10 | #constructor to initialise the doubly linked list, head and tail initialised to 'None' |
| 11 | def __init__(self): |
| 12 | self.head = self.tail = None |
| 13 | |
| 14 | #method to check if the doubly linked list is empty or not |
| 15 | def isEmpty(self): |
nothing calls this directly
no outgoing calls
no test coverage detected