diff options
author | Sébastien Martini <seb@dbzteam.org> | 2015-06-04 19:18:00 +0200 |
---|---|---|
committer | Sébastien Martini <seb@dbzteam.org> | 2015-06-04 19:18:00 +0200 |
commit | 0f3f8950d12e4a6534320153eed1a90a778da4ae (patch) | |
tree | 996a2c4b61c4bff3cd6bbf94b14aa157466e8383 /python3 | |
parent | 2d716e5ceef8ade1a60eff0bac30de939afb2b8d (diff) | |
parent | 387e5445468b88f6c97c7af66da5da2833caf34e (diff) | |
download | pyinotify-master.tar.gz |
Sync whitespace / comments between Python 2 and 3 versions
Diffstat (limited to 'python3')
-rwxr-xr-x | python3/pyinotify.py | 11 |
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/' |