summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Updated travis configuration file (again).Sebastien Martini2012-04-271-1/+1
|
* Updated travis configuration.Sebastien Martini2012-04-271-1/+1
|
* Added travis configuration file.Sebastien Martini2012-04-271-0/+9
|
* Fixed runtime warnings in inotify ctypes' wrapper.Sebastien Martini2012-04-142-0/+16
| | | | Contributed by bdkearns https://github.com/bdkearns
* Documented ExcludeFilter shortcomings.Sebastien Martini2012-03-202-0/+8
|
* auto_add=True automatically implies oring IN_CREATE with theSebastien Martini2012-03-112-4/+14
| | | | | provided mask value. Misbehavior reported by Maxime Augier https://github.com/maugier.
* Removed unused code.Sebastien Martini2012-03-111-15/+0
|
* Added download_url to package's meta-data.Sebastien Martini2011-12-261-0/+1
|
* Bumped version number, released Pyinotify 0.9.3.0.9.3Sebastien Martini2011-12-203-3/+3
|
* Updated README file.Sebastien Martini2011-12-201-8/+6
|
* Added new command line option --command.Sebastien Martini2011-12-022-0/+20
| | | | | | This new command permits to run a shell command on each event. Idea and initial patch contributed by Domen Kožar @iElectric domen@dev.si.
* Improve comment.Sebastien Martini2011-12-022-6/+6
|
* Correctly handle IN_Q_OVERFLOW events.Sebastien Martini2011-12-022-8/+8
| | | | | | | This commit should fix a regression introduced with commit d334049eed6b1136a9d224a3ca17aa66fea5215a. Issue reported by Tomi Belan @TomiBelan.
* Removed customized unicode logger class.Sebastien Martini2011-11-171-36/+0
| | | | | It should be fine without it, pyinotify shouldn't have unicode instances left internally.
* Merge pull request #25 from Flyser/patch-2Sebastien Martini2011-11-151-1/+1
|\ | | | | fix typo "dependancies". @flyser Thanks for your help.
| * fix typo "dependancies"Flyser2011-11-151-1/+1
| |
* | Merge pull request #24 from Flyser/patch-1Sebastien Martini2011-11-151-1/+1
|\ \ | |/ |/| fix IN_DELATE typo
| * fix IN_DELATE typoFlyser2011-11-151-1/+1
|/
* Fixed error message (reported by Jordan Pittier).Sebastien Martini2011-10-112-2/+2
|
* Ignore dangling IN_IGNORED events sent after watches are removed.Sebastien Martini2011-10-112-4/+6
|
* Use setuptools setup method if setuptools package is availableSebastien Martini2011-09-151-1/+7
| | | | (idea contributed by Hunter Blanks hblanks@monetate.com).
* Properly subclass logging.Logger (contributed by Charles CazabonSebastien Martini2011-06-081-1/+1
| | | | charlesc@fatdrop.co.uk).
* Bumped version number (0.9.2).0.9.2Sebastien Martini2011-04-193-3/+3
|
* Use PY_MAJOR_VERSION instead of PY_VERSION_HEX in C extension.Sebastien Martini2011-04-052-1/+2
|
* Emit artificial IN_CREATE events on recursive files creations.Sebastien Martini2011-04-052-27/+39
| | | | | | | | | This commit should help mitigating long standing issue "Missing IN_CREATE events" https://github.com/seb-m/pyinotify/issues#issue/2 Note that symlinks are handled as files and that no similar treatment is applied to IN_MOVE_TO events, because even if moved files are new watched items, there aren't newly created per se by the filesystem.
* Use __slots__ in Watch class to reduce memory footprint (contributedSebastien Martini2011-03-222-2/+8
| | | | by Olivier Cortès).
* Few minors renaming.Sebastien Martini2011-02-082-21/+35
|
* Fix access to inotify's variables from ctypes.Sebastien Martini2011-02-072-46/+66
|
* Disable ctypes when inotify_syscalls is successfully imported.Sebastien Martini2011-02-062-0/+6
|
* By default use system calls numbers defined in <sys/syscall.h>.Sebastien Martini2011-02-021-79/+85
|
* Updated setup.py.Sebastien Martini2011-01-281-12/+9
|
* Updated meta files.Sebastien Martini2011-01-285-7/+8
|
* Updated dependencies.Sebastien Martini2011-01-281-2/+0
|
* Updated MANIFEST.in to handle common/.Sebastien Martini2011-01-281-0/+1
|
* Added C-coded inotify syscalls interface.Sebastien Martini2011-01-284-163/+619
| | | | | | | | | | | | | | - If compile_ext_mod is set to True in setup.py, this extension is explicitly compiled. - If compile_ext_mod is set to False in setup.py (default), this extension is compiled only if no inotify support has been found from ctypes. - Replaced exception type UnsupportedLibcVersionError by InotifyBindingNotFoundError. WatchManager.__init__() may raise this exception on error. - SysCtlINotify (class providing access to inotify /proc variables) is not instanciated (therefore not available) when the C extension is used. It is only available from ctypes.
* Updated setup.py.Sebastien Martini2011-01-230-0/+0
|\
| * README.mdSebastien Martini2011-01-231-1/+1
| |\
* | \ Updated setup.py.Sebastien Martini2011-01-231-1/+1
|\ \ \ | |/ / |/| / | |/
| * Updated README.md.Sebastien Martini2011-01-231-9/+12
| |
* | Updated README.md.Sebastien Martini2011-01-231-9/+12
|/
* Removed useless code spotted by pyflakes.Sebastien Martini2011-01-222-17/+0
|
* Updated setup.py.Sebastien Martini2011-01-161-3/+13
|
* Added MANIFEST.in.Sebastien Martini2011-01-161-0/+9
|
* Fixed select's error handling (contributed by zjes).Sebastien Martini2011-01-061-1/+1
|
* Updated documentation.Sebastien Martini2010-10-182-1/+4
|
* Released Pyinotify 0.9.1.0.9.1Sebastien Martini2010-10-173-8/+8
|
* Moved README to README.md.Sebastien Martini2010-10-171-0/+38
|
* Updated README to use markdown syntax.Sebastien Martini2010-10-171-34/+0
|
* Updated README.Sebastien Martini2010-09-161-3/+4
|
* Modified project url.Sebastien Martini2010-09-155-5/+5
|