summaryrefslogtreecommitdiff
path: root/fuse.py
Commit message (Expand)AuthorAgeFilesLines
* Ignore input time field if it doesn't exist on statRian Hunter2016-03-311-1/+3
* Add support for flags in pyfuse.OperationsRian Hunter2016-03-311-15/+37
* Add Python3 compatibility boilerplateEthan Estrada2016-03-141-1/+1
* updating minimum version to Python 2.6Terence Honles2016-03-141-3/+3
* Merge pull request #22 from JohannesBuchner/masterTerence Honles2016-03-061-1/+1
|\
| * unused create_string_buffer return valueJohannes Buchner2013-10-111-1/+1
* | Merge remote-tracking branch 'nickcoutsos/patch-1'Terence Honles2016-03-061-1/+3
|\ \
| * | fix string encoding as referenced in #24/#25Terence Honles2016-03-061-1/+1
| * | Update the return value of FUSE.listxattrNick Coutsos2013-06-261-1/+3
| |/
* | Merge remote-tracking branch 'lpzummer/master'Terence Honles2016-03-061-0/+38
|\ \
| * | Add MIPS architecture.lpzummer2015-10-191-0/+38
| |/
* | Merge pull request #39 from rncry/masterTerence Honles2016-03-061-1/+5
|\ \
| * | Added missing fields in statvfs on linuxrncry2015-12-031-1/+5
| |/
* | Add support for arm64 architectureGreg Pearson2016-02-091-0/+17
|/
* safely save and restore signal handlerTerence Daniel Honles2013-03-201-2/+8
* adding/cleaning documentation + allowing setup to work with Python2.5v2.0.2Terence Daniel Honles2013-03-021-48/+89
* allowing setting of st_birthtime attributeTerence Daniel Honles2013-03-021-1/+1
* fixing encoding bugsTerence Daniel Honles2012-08-181-5/+4
* fixing read method to properly return the actual amount readTerence Daniel Honles2012-07-151-13/+26
* updating readme/setup + pointing to new urlsTerence Honles2012-05-071-5/+7
* fixing line length to follow PEP8Terence Honles2012-04-241-30/+66
* removing fuse3x which can be generated by 2to3Terence Honles2012-04-241-0/+796
* organizing examples and package filesTerence Honles2012-04-231-692/+0
* Allow fuse to handle SIGINT (Ctrl-C) gracefullysvnverigak2012-03-061-1/+8
* Add support for OSXFUSE in Darwinverigak2012-03-061-1/+2
* Add a setup.py fileverigak2012-03-061-0/+2
* Remove redundant whitespace.verigak2011-12-051-5/+5
* Fix fuse4x for the Mac. MacFuse support should now be considered legacy.verigak2011-12-051-25/+57
* Use FuseOSError, an OSError subclass for all exceptions thrown by Operations.verigak2010-08-261-22/+28
* Changed default read implementation to raise a more meaningful error.verigak2010-01-021-1/+1
* Fix chown when one of the arguments is -1 (issue 25).verigak2010-01-021-0/+5
* Check the return value of fuse_main_real and raise a RuntimeError on error.verigak2010-01-021-2/+4
* Added FreeBSD support.verigak2009-11-011-1/+18
* - Imported patch by alex.morega that adds 32-bit PPC Linux support (see Issue...verigak2009-10-281-13/+28
* Implemented destroy()verigak2009-10-221-2/+9
* Fix segfault of fuse_get_context().verigak2009-10-051-2/+3
* The multiplication by 1.0 was redundant since we import division from __futur...verigak2009-09-141-2/+2
* Expose init as discussed in Issue 18.verigak2009-09-071-2/+10
* Made Operations a subclass of object so that filesystems that overrideverigak2009-09-071-1/+1
* - Raise an exception if libfuse does not exist.verigak2009-09-071-19/+21
* We have to use create_string_buffer when we memmove, because python unicodeverigak2009-08-171-14/+17
* Previous comment (taken from fuse.h) was misleading.verigak2009-08-161-2/+2
* The first substring was redundant.verigak2009-08-071-1/+1
* getxatr and listxattr now check the size returned by Operations andverigak2009-08-051-11/+14
* readlink should truncate strings longer than bufsizeverigak2009-06-291-1/+2
* There is an incombatibility between Linux and Mac OS X concerning st_nlink ofverigak2009-06-191-1/+5
* readdir of class FUSE now checks the return value of fillerverigak2009-06-091-1/+2
* Moved _operation_wrapper inside FUSE so it can overriden when subclassing FUSEverigak2009-06-091-12/+12
* - Added a raw_fi to the constructor of FUSE. If it set to True (False by defa...verigak2009-06-031-76/+123
* read can now return EOF (when using direct_io)verigak2009-04-271-2/+3