On Fri, 26 Jul 2013 09:38:10 +0200
Ronald Oussoren wrote:
>
> On 25 Jul, 2013, at 4:18, Ben Finney wrote:
>
> > Ben Finney writes:
> >
> >> Work continues on the PEP 3143-compatible ‘python-daemon’, porting it to
> >> Python 3 and aiming for inclusion in the standard library.
>
> At first gl
On 25 Jul, 2013, at 4:18, Ben Finney wrote:
> Ben Finney writes:
>
>> Work continues on the PEP 3143-compatible ‘python-daemon’, porting it to
>> Python 3 and aiming for inclusion in the standard library.
At first glance the library appears to close all open files, with an option
to exclude s
Antoine Pitrou writes:
> Therefore I'd be -1 on [PEP 3143] until those issues are alleviated.
Cameron Simpson writes:
> I have always found the convention that daemons have a umask of 0
> to be utterly bogus, because almost all library code relies on the
> umask to set default security policy
On 25Jul2013 17:26, Antoine Pitrou wrote:
| Le Thu, 25 Jul 2013 12:08:18 +1000,
| Ben Finney a écrit :
| > Work continues on the PEP 3143-compatible ‘python-daemon’, porting it
| > to Python 3 and aiming for inclusion in the standard library.
|
| The PEP hasn't been formally accepted yet, howeve
Le Thu, 25 Jul 2013 12:08:18 +1000,
Ben Finney a écrit :
> Guido van Rossum writes:
>
> > To reduce the need for 3rd party subprocess creation code, we should
> > have better daemon creation code in the stdlib -- I wrote some damn
> > robust code for this purpose in my previous job, but it never
Ben Finney writes:
> Work continues on the PEP 3143-compatible ‘python-daemon’, porting it to
> Python 3 and aiming for inclusion in the standard library.
At PyPI http://pypi.python.org/pypi/python-daemon/>, and
development co-ordinated at Alioth
https://alioth.debian.org/projects/python-daemon/
Guido van Rossum writes:
> To reduce the need for 3rd party subprocess creation code, we should
> have better daemon creation code in the stdlib -- I wrote some damn
> robust code for this purpose in my previous job, but it never saw the
> light of day.
Work continues on the PEP 3143-compatible