Determine if the given memory address lies within the watched buffer. @rtype: bool @return: C{True} if the given memory address lies within the watched buffer, C{False} otherwise.
(self, address)
| 1769 | return self.__oneshot |
| 1770 | |
| 1771 | def match(self, address): |
| 1772 | """ |
| 1773 | Determine if the given memory address lies within the watched buffer. |
| 1774 | |
| 1775 | @rtype: bool |
| 1776 | @return: C{True} if the given memory address lies within the watched |
| 1777 | buffer, C{False} otherwise. |
| 1778 | """ |
| 1779 | return self.__start <= address < self.__end |
| 1780 | |
| 1781 | |
| 1782 | # ============================================================================== |
no outgoing calls