@@ -111,7 +111,7 @@ def utime(self, path, times):
111111# The following utimens method would do the same as the above utime method.
112112# We can't make it better though as the Python stdlib doesn't know of
113113# sub-second preciseness in access/modify times.
114- #
114+ #
115115# def utimens(self, path, ts_acc, ts_mod):
116116# os.utime("." + path, (ts_acc.tv_sec, ts_mod.tv_sec))
117117
@@ -229,11 +229,11 @@ def lock(self, cmd, owner, **kw):
229229 # Advisory file locking is pretty messy in Unix, and the Python
230230 # interface to this doesn't make it better.
231231 # We can't do fcntl(2)/F_GETLK from Python in a platfrom independent
232- # way. The following implementation *might* work under Linux.
232+ # way. The following implementation *might* work under Linux.
233233 #
234234 # if cmd == fcntl.F_GETLK:
235235 # import struct
236- #
236+ #
237237 # lockdata = struct.pack('hhQQi', kw['l_type'], os.SEEK_SET,
238238 # kw['l_start'], kw['l_len'], kw['l_pid'])
239239 # ld2 = fcntl.fcntl(self.fd, fcntl.F_GETLK, lockdata)
@@ -242,7 +242,7 @@ def lock(self, cmd, owner, **kw):
242242 # res = {}
243243 # for i in xrange(len(uld2)):
244244 # res[flockfields[i]] = uld2[i]
245- #
245+ #
246246 # return fuse.Flock(**res)
247247
248248 # Convert fcntl-ish lock parameters to Python's weird
0 commit comments