Open the entry given by entryPath if its mode is open.
(self, entrypath)
| 1530 | return self.tk.call(self._w, 'getmode', entrypath) |
| 1531 | |
| 1532 | def open(self, entrypath): |
| 1533 | '''Open the entry given by entryPath if its mode is open.''' |
| 1534 | self.tk.call(self._w, 'open', entrypath) |
| 1535 | |
| 1536 | def setmode(self, entrypath, mode='none'): |
| 1537 | '''This command is used to indicate whether the entry given by |
no test coverage detected