[issue1615158] POSIX capabilities support

2019-09-09 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- pull_requests: +15463 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/15815 ___ Python tracker ___ ___

[issue1615158] POSIX capabilities support

2019-08-13 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +nanjekyejoannah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue1615158] POSIX capabilities support

2017-06-14 Thread Christian H
Changes by Christian H : -- nosy: +Christian H ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue1615158] POSIX capabilities support

2014-05-13 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue1615158] POSIX capabilities support

2014-04-28 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- stage: patch review -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue1615158] POSIX capabilities support

2014-02-03 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- versions: +Python 3.5 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list ma

[issue1615158] POSIX capabilities support

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue1615158] POSIX capabilities support

2012-05-16 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +neologix ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue1615158] POSIX capabilities support

2011-05-16 Thread Martin v . Löwis
Martin v. Löwis added the comment: > "posixcap" sounds ok to me. Bike-sheddingly, it bothers me that these functions are actually *not* defined by POSIX, but have been withdrawn before becoming standard. So I'd rather call it linuxcap. Using _linuxcap, and exposing them from os sounds fine to m

[issue1615158] POSIX capabilities support

2011-05-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: "posixcap" sounds ok to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue1615158] POSIX capabilities support

2011-05-16 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: Another possibility is to make it a private module _posixcapabilities, which would be used in os module: try: from _posixcapabilities import * except ImportError: pass -- ___ Python tra

[issue1615158] POSIX capabilities support

2011-05-15 Thread Ross Lagerwall
Ross Lagerwall added the comment: > I would say either posixcap or capabitilies. The problem with capabilities is that it's easy to misspell, as I did :-) -- ___ Python tracker _

[issue1615158] POSIX capabilities support

2011-05-15 Thread Ross Lagerwall
Ross Lagerwall added the comment: > > I think it would be better if they are added to a separate module > Can you propose a name for the module? I would say either posixcap or capabitilies. -- ___ Python tracker

[issue1615158] POSIX capabilities support

2011-05-15 Thread Martin v . Löwis
Martin v. Löwis added the comment: > The development headers for these are not installed by default on > some distributions. This is not an issue at all - that's what autoconf is for. > Adding this to the posix module would enforce linking with lcap and > lattr always. That's a more serious p

[issue1615158] POSIX capabilities support

2011-05-15 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: posix module has many optional functions, which are available only on some systems. -- ___ Python tracker ___ _

[issue1615158] POSIX capabilities support

2011-05-14 Thread Ross Lagerwall
Ross Lagerwall added the comment: Adding this to the posix module would enforce linking with lcap and lattr always. The development headers for these are not installed by default on some distributions. I think it would be better if they are added to a separate module (especially since all th

[issue1615158] POSIX capabilities support

2011-01-17 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +giampaolo.rodola versions: +Python 3.3 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-l

[issue1615158] POSIX capabilities support

2011-01-06 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +pitrou, rosslagerwall ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue1615158] POSIX capabilities support

2010-07-16 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: +skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue1615158] POSIX capabilities support

2010-07-16 Thread Mark Lawrence
Mark Lawrence added the comment: Matt Kern has put a lot of work into the attached patches from what I can see. Common courtesy suggests that someone make an effort to review his work which now can only go into 3.2. I would take it on myself but know nothing about POSIX and still find the P

[issue1615158] POSIX capabilities support

2009-12-11 Thread Ezio Melotti
Changes by Ezio Melotti : -- keywords: +needs review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue1615158] POSIX capabilities support

2009-12-11 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever versions: +Python 3.2 -Python 3.1 ___ Python tracker ___ ___ Pyt

[issue1615158] POSIX capabilities support

2009-06-13 Thread Matt Kern
Matt Kern added the comment: Ping. Anything I can do? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue1615158] POSIX capabilities support

2009-03-30 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> patch review versions: +Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue1615158] POSIX capabilities support

2008-06-20 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: Unfortunately, these changes missed the beta for 2.6, so it must be delayed until 2.7. -- versions: +Python 2.7 -Python 2.6 ___ Python tracker <[EMAIL PROTECTED]>

[issue1615158] POSIX capabilities support

2008-06-20 Thread Matt Kern
Matt Kern <[EMAIL PROTECTED]> added the comment: Updated patch with further documentation fixes. Added file: http://bugs.python.org/file10672/patch-20080620-1314.diff ___ Python tracker <[EMAIL PROTECTED]> ___

[issue1615158] POSIX capabilities support

2008-06-20 Thread Matt Kern
Matt Kern <[EMAIL PROTECTED]> added the comment: Updated patch with numerous changes, which (hopefully) address the issues you raised. Added file: http://bugs.python.org/file10671/patch-20080620-1232.diff ___ Python tracker <[EMAIL PROTECTED]>

[issue1615158] POSIX capabilities support

2008-01-05 Thread Christian Heimes
Changes by Christian Heimes: -- type: -> rfe versions: +Python 2.6 _ Tracker <[EMAIL PROTECTED]> _ ___ Python-bugs-list mailing list