summaryrefslogtreecommitdiff
path: root/python3
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2015-03-16 21:58:39 +0100
committerDaniel Hahler <git@thequod.de>2015-06-04 18:43:52 +0200
commit387e5445468b88f6c97c7af66da5da2833caf34e (patch)
tree996a2c4b61c4bff3cd6bbf94b14aa157466e8383 /python3
parent2d716e5ceef8ade1a60eff0bac30de939afb2b8d (diff)
downloadpyinotify-387e5445468b88f6c97c7af66da5da2833caf34e.tar.gz
Sync whitespace / comments between Python 2 and 3 versions
Diffstat (limited to 'python3')
-rwxr-xr-xpython3/pyinotify.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/python3/pyinotify.py b/python3/pyinotify.py
index 4eb03b0..bc24313 100755
--- a/python3/pyinotify.py
+++ b/python3/pyinotify.py
@@ -1280,10 +1280,13 @@ class Notifier:
def __daemonize(self, pid_file=None, stdin=os.devnull, stdout=os.devnull,
stderr=os.devnull):
"""
- pid_file: file where the pid will be written. If pid_file=None the pid
- is written to /var/run/<sys.argv[0]|pyinotify>.pid, if
- pid_file=False no pid_file is written.
- stdin, stdout, stderr: files associated to common streams.
+ @param pid_file: file where the pid will be written. If pid_file=None
+ the pid is written to
+ /var/run/<sys.argv[0]|pyinotify>.pid, if pid_file=False
+ no pid_file is written.
+ @param stdin:
+ @param stdout:
+ @param stderr: files associated to common streams.
"""
if pid_file is None:
dirname = '/var/run/'