| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Sync whitespace / comments between Python 2 and 3 versions | Daniel Hahler | 2015-06-04 | 1 | -9/+9 |
| | | |||||
| * | Bump version0.9.6 | Sebastien Martini | 2015-06-04 | 1 | -1/+1 |
| | | |||||
| * | Fix doc indent | Sebastien Martini | 2015-06-04 | 1 | -4/+4 |
| | | |||||
| * | Improve documentation | Sebastien Martini | 2015-06-04 | 1 | -8/+11 |
| | | | | | Close #101 | ||||
| * | Only close a valid file descriptor | Sebastien Martini | 2015-06-04 | 1 | -2/+5 |
| | | | | | | | Idea contributed by @blueyed Close #93 | ||||
| * | Access /proc/sys instead of using sysctl to access inotify's attributes | Sebastien Martini | 2015-06-04 | 1 | -64/+28 |
| | | | | | Close #84 #99 | ||||
| * | Fix documentation typo | John Tims | 2015-06-02 | 1 | -1/+1 |
| | | |||||
| * | Release Pyinotify 0.9.50.9.5 | Sebastien Martini | 2015-01-09 | 1 | -2/+2 |
| | | |||||
| * | Implement stop method in AsyncioNotifier | Sebastien Martini | 2014-12-22 | 1 | -0/+4 |
| | | |||||
| * | Remove extra lines, fix indents | Sebastien Martini | 2014-12-22 | 1 | -6/+3 |
| | | |||||
| * | Merge pull request #88 from apenwarr/master | Sébastien Martini | 2014-12-22 | 1 | -0/+5 |
| |\ | | | | | Allow TornadoAsyncNotifier.stop() to clean up all hanging refs. | ||||
| | * | Allow TornadoAsyncNotifier.stop() to clean up all hanging refs. | Avery Pennarun | 2014-11-26 | 1 | -0/+5 |
| | | | | | | | | | | | Without this, the TornadoAsyncNotifier and thus WatchManager instances are never freed, because tornado is still holding a refernce to the handler. | ||||
| * | | Merge pull request #85 from dano/master | Sébastien Martini | 2014-12-22 | 1 | -0/+33 |
| |\ \ | | | | | | | Add asyncio-compatible Notifier sub-class. | ||||
| | * | | doc update | dano | 2014-10-16 | 1 | -0/+2 |
| | | | | |||||
| | * | | Add asyncio Notifier adapter | dano | 2014-10-16 | 1 | -0/+31 |
| | |/ | |||||
| * | | Update pyinotify.py | andy boot | 2014-12-05 | 1 | -2/+2 |
| |/ | | | fix link in comment | ||||
| * | Fix ExcludeFilter docstring examples. | Sebastien Martini | 2014-08-16 | 1 | -4/+4 |
| | | | | | Closes #81 | ||||
| * | Typo. | Sebastien Martini | 2014-07-10 | 1 | -1/+1 |
| | | |||||
| * | Improve example daemon.py. | Sebastien Martini | 2014-07-10 | 1 | -7/+11 |
| | | | | | Closes #77 | ||||
| * | Stub support for Pyinotify on FreeBSD. | Sebastien Martini | 2014-07-06 | 1 | -1/+6 |
| | | | | | | | | I don't have any FreeBSD system, so test it and report any issue with this code. Closes #64 | ||||
| * | Add WatchManager attribute to ignore events. | Sebastien Martini | 2014-07-06 | 1 | -0/+14 |
| | | | | | | | | | | | A new boolean attribute ignore_events (False by default) can be set to True in order to ignore reported events. Note that Watch descriptors are still valid and events are still received but there are ignored and not processed. Processing is resumed by re-assigning False to this attribute. Closes #44 | ||||
| * | Fix /proc inotify interfaces. | Sebastien Martini | 2014-07-06 | 1 | -12/+20 |
| | | | | | | | | | | | There was a bug preventing the variables to be assigned a new value. The operations accessing (get and set) these interfaces now return an OSError exception on failure. Closes #73 | ||||
| * | Handle OSError exception in process_IN_CREATE. | Sebastien Martini | 2014-07-05 | 1 | -24/+29 |
| | | | | | close #76 | ||||
| * | add glob option to command line | Daniel Black | 2013-12-23 | 1 | -1/+4 |
| | | |||||
| * | Fall back to glob.glob() on Python 2.4 | John Swinbank | 2013-11-19 | 1 | -2/+7 |
| | | | | | | | glob.iglob() was introduced with Python 2.5, but pyinotify claims compatibility with Python 2.4. Here, we fall back to glob.glob() if iglob() isn't available. | ||||
| * | Released Pyinotify 0.9.40.9.4 | Sebastien Martini | 2012-11-15 | 1 | -1/+1 |
| | | |||||
| * | Typos. | Sebastien Martini | 2012-10-04 | 1 | -2/+1 |
| | | |||||
| * | Improved Tornado's notifier. | Sebastien Martini | 2012-10-04 | 3 | -24/+40 |
| | | |||||
| * | Ported TornadoAsyncNotifier to Python3. | Sebastien Martini | 2012-10-04 | 2 | -9/+16 |
| | | | | | | Assuming Tornado works the same way under Python3... I must say I don't use Tornado myself I didn't test it. | ||||
| * | Add tornado ioloop support | LE0N | 2012-10-03 | 2 | -0/+38 |
| | | |||||
| * | add support for IN_EXCL_UNLINK flag | quiver | 2012-08-27 | 1 | -0/+5 |
| | | |||||
| * | Don't check for existing watch when setting up watches | Sebastien Martini | 2012-06-07 | 1 | -5/+0 |
| | | | | | | | | | | | This check had prohibitive cost and was useless to some extent because adding a watch for an already watched path will result in assigning the same watch descriptor therefore only updating it. There won't be any dangling watch descriptor left into the watch manager dictionary. Issue reported by Jan Knudsen https://github.com/Shne | ||||
| * | Fixed runtime warnings in inotify ctypes' wrapper. | Sebastien Martini | 2012-04-14 | 1 | -0/+8 |
| | | | | | Contributed by bdkearns https://github.com/bdkearns | ||||
| * | Documented ExcludeFilter shortcomings. | Sebastien Martini | 2012-03-20 | 1 | -0/+4 |
| | | |||||
| * | auto_add=True automatically implies oring IN_CREATE with the | Sebastien Martini | 2012-03-11 | 1 | -2/+7 |
| | | | | | | provided mask value. Misbehavior reported by Maxime Augier https://github.com/maugier. | ||||
| * | Removed unused code. | Sebastien Martini | 2012-03-11 | 1 | -15/+0 |
| | | |||||
| * | Bumped version number, released Pyinotify 0.9.3.0.9.3 | Sebastien Martini | 2011-12-20 | 1 | -1/+1 |
| | | |||||
| * | Added new command line option --command. | Sebastien Martini | 2011-12-02 | 1 | -0/+10 |
| | | | | | | | 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 Martini | 2011-12-02 | 1 | -3/+3 |
| | | |||||
| * | Correctly handle IN_Q_OVERFLOW events. | Sebastien Martini | 2011-12-02 | 1 | -4/+4 |
| | | | | | | | | This commit should fix a regression introduced with commit d334049eed6b1136a9d224a3ca17aa66fea5215a. Issue reported by Tomi Belan @TomiBelan. | ||||
| * | Removed customized unicode logger class. | Sebastien Martini | 2011-11-17 | 1 | -36/+0 |
| | | | | | | It should be fine without it, pyinotify shouldn't have unicode instances left internally. | ||||
| * | Merge pull request #25 from Flyser/patch-2 | Sebastien Martini | 2011-11-15 | 1 | -1/+1 |
| |\ | | | | | fix typo "dependancies". @flyser Thanks for your help. | ||||
| | * | fix typo "dependancies" | Flyser | 2011-11-15 | 1 | -1/+1 |
| | | | |||||
| * | | fix IN_DELATE typo | Flyser | 2011-11-15 | 1 | -1/+1 |
| |/ | |||||
| * | Fixed error message (reported by Jordan Pittier). | Sebastien Martini | 2011-10-11 | 1 | -1/+1 |
| | | |||||
| * | Ignore dangling IN_IGNORED events sent after watches are removed. | Sebastien Martini | 2011-10-11 | 1 | -2/+3 |
| | | |||||
| * | Properly subclass logging.Logger (contributed by Charles Cazabon | Sebastien Martini | 2011-06-08 | 1 | -1/+1 |
| | | | | | charlesc@fatdrop.co.uk). | ||||
| * | Bumped version number (0.9.2).0.9.2 | Sebastien Martini | 2011-04-19 | 1 | -1/+1 |
| | | |||||
| * | Emit artificial IN_CREATE events on recursive files creations. | Sebastien Martini | 2011-04-05 | 1 | -14/+20 |
| | | | | | | | | | | 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 (contributed | Sebastien Martini | 2011-03-22 | 1 | -1/+4 |
| | | | | | by Olivier Cortès). | ||||
