Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Ben Finney Newsgroups: comp.lang.python Subject: [RELEASE] =?utf-8?Q?=E2=80=98python-daemon?= =?utf-8?B?4oCZ?= version 2.1.1 released Date: Sat, 30 Jan 2016 14:45:31 +1100 Lines: 45 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: news.uni-berlin.de Bez/nKfNrtb7sCzgAI9ajgeK/oyiLavmK+nnRb4bCH6A== Return-Path: X-Original-To: python-list@mail.python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'url:pypi': 0.03; 'false.': 0.07; 'feature.': 0.07; 'option,': 0.07; 'subject:released': 0.07; '8bit%:30': 0.09; 'library?': 0.09; 'received:internal': 0.09; 'release,': 0.09; 'requested.': 0.09; 'subject:version': 0.09; 'bug': 0.10; 'python': 0.10; 'explicitly': 0.15; '2.1.1': 0.16; '8bit%:32': 0.16; 'bug:': 0.16; 'malcolm': 0.16; 'received:10.202': 0.16; 'received:10.202.2': 0.16; 'received:66.111': 0.16; 'received:66.111.4': 0.16; 'received:66.111.4.27': 0.16; 'received:io': 0.16; 'received:messagingengine.com': 0.16; 'received:out3-smtp.messagingengine.com': 0.16; 'received:psf.io': 0.16; 'specifies': 0.18; 'all,': 0.20; 'library': 0.20; 'changes': 0.20; 'permission': 0.20; 'fix': 0.21; 'unix': 0.24; 'header:User- Agent:1': 0.26; 'bugs': 0.27; 'omitted': 0.29; 'announcement': 0.30; 'option': 0.31; 'implement': 0.32; 'announce': 0.32; 'url:python': 0.33; 'skip:- 10': 0.34; 'previous': 0.34; 'add': 0.34; 'library.': 0.35; 'url:org': 0.36; 'to:addr:python-list': 0.36; 'received:10': 0.37; 'thanks': 0.37; 'release': 0.37; 'received:66': 0.38; 'version': 0.38; 'subject:[': 0.39; 'subject:-': 0.39; 'software': 0.40; 'received:58': 0.61; 'default': 0.61; 'our': 0.64; 'pleased': 0.64; 'skip:= 30': 0.67; 'skip:\xe2 10': 0.70; 'subjectcharset:utf-8': 0.71; 'groups.': 0.72; '_o__)': 0.84 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:message-id:mime-version:subject:to:x-sasl-enc :x-sasl-enc; s=smtpout; bh=jDYOevUYcOxr+oHVwPi5rKeEp24=; b=DOW/R gg5zJkzq1q12icWhoiSgkQw9SzaIRwHOcK3duGYeizCMBQLq0Lav+lrdoKHPfB1U xE3gqqZeRvOXv90rzkBFqjCPlk8G3K7dU3JjBHjtYsne+d0uM6x5OATjMWTLoOD3 DaqPLVsXWmU9vpl58j24GcILifHieeU7X3Qy0s= X-Sasl-enc: PdfUu74tGi0qrko0egIRSJZ65l6yoy+d5KIkABmZ4hfu 1454125534 Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-Mailman-Approved-At: Sat, 30 Jan 2016 07:37:00 -0500 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:102296 Howdy all, I am pleased to announce the release of version 2.1.1 of the ‘python-daemon’ library. The current release is always available at . Significant changes since the previous version ============================================== Version 2.1.0 ------------- I omitted sending a release announcement for version 2.1.0. * Add a DaemonContext option, ‘initgroups’, which specifies whether to set the daemon process's supplementary groups. * Set the process groups using ‘os.initgroups’. Thanks to Malcolm Purvis for contributing an implementation of this feature. Version 2.1.1 ------------- This is a bug fix release, addressing this bug: * Default ‘initgroups’ option to False. Using ‘os.initgroups’ requires permission to set process GID, so this now needs to be explicitly requested. What is the ‘python-daemon’ library? ==================================== ‘python-daemon’ is a Python library to implement a well-behaved Unix daemon process. -- \ “There are no significant bugs in our released software that | `\ any significant number of users want fixed.” —Bill Gates, | _o__) 1995-10-23 | Ben Finney