Changeset ca5ddc5f5eea62c76b6be75a1fbdedf663dbcfd0
- Timestamp:
- 07/01/08 07:47:52 (6 months ago)
- Parents:
- 4d09d5dc0625b00629eef1303ef550a0540664f9
- Children:
- 8e300b46ed892704a4484e4734c7d9e2c7100877
- git-committer:
- Sebastien Martini <ookoi@mars.(none)> / 2008-07-01T07:47:52Z+0200
- Files:
-
- 8 modified
-
chain.py (modified) (1 diff)
-
daemon.py (modified) (1 diff)
-
exclude.py (modified) (1 diff)
-
loop.py (modified) (1 diff)
-
not_quiet.py (modified) (1 diff)
-
stats.py (modified) (1 diff)
-
stats_threaded.py (modified) (1 diff)
-
transient_file.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
chain.py
r9b43851 rca5ddc5 1 # Example 2 # 1 3 from pyinotify import * 2 4 -
daemon.py
r998bc89 rca5ddc5 1 # Example 2 # 1 3 import pyinotify 2 4 -
exclude.py
r70f6c47 rca5ddc5 1 # Example 2 # 1 3 import pyinotify 2 4 import os -
loop.py
r998bc89 rca5ddc5 1 # Example 2 # 1 3 import pyinotify 2 4 -
not_quiet.py
r8da69de rca5ddc5 1 # Example 2 # 3 1 4 # Overrides default behavior and raise exception on add_watch, update_watch, 2 5 # rm_watch errors. -
stats.py
r9b43851 rca5ddc5 1 # Example 2 # 1 3 from pyinotify import * 2 4 -
stats_threaded.py
rbdcb29b rca5ddc5 1 # Example 2 # 3 import time 4 from pyinotify import * 5 1 6 # Do the same thing than stats.py but with a ThreadedNotifier's 2 7 # instance. 3 8 # This example illustrates the use of this class but the recommanded 4 9 # implementation is whom of stats.py 5 import time6 from pyinotify import *7 10 8 11 -
transient_file.py
r998bc89 rca5ddc5 1 # Example 2 # 1 3 from pyinotify import * 2 4