Commit c01f9712 by Victor Shnayder

comment tweaks

parent b0bf6b7e
...@@ -10,13 +10,15 @@ it :) ...@@ -10,13 +10,15 @@ it :)
Basic structure: Basic structure:
- for each path being monitoring, maintain a threading.Event object that is signalled when the file is changed. - for each path being monitored, maintain a threading.Event object that is
signalled when the file is changed.
- the client interface is the following: - the client interface is the following:
1) Call watch(path) -> returns an Event object e. 1) Call watch(path) -> returns an Event object e.
2) call e.is_set() to tell whether the file has been modified. 2) call e.is_set() to tell whether the file has been modified.
3) call e.clear() to clear the state to start looking for the next modification. 3) call e.clear() to clear the state to start looking for the next modification.
4) go back to step 2 to look for the next modification. 4) go back to step 2 to ask about the next modification.
""" """
import os import os
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment