Re: [Python-Dev] Adding shlex.join?

2019-04-17 Thread Simon Cross
Software that "Just Works" and hasn't needed maintenance in years is the best software. :D ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe:

Re: [Python-Dev] Adding shlex.join?

2019-04-17 Thread Eric S. Raymond
Paul Ganssle : > Hey all, > > I've been reviewing old "awaiting review" PRs recently, and about a week > ago I found PR #7605 , > adding shlex.join(), with a corresponding bug at bpo-22454 > . The PR's implementation

[Python-Dev] Adding shlex.join?

2019-04-17 Thread Paul Ganssle
Hey all, I've been reviewing old "awaiting review" PRs recently, and about a week ago I found PR #7605 , adding shlex.join(), with a corresponding bug at bpo-22454 . The PR's implementation is simple and seems

Re: [Python-Dev] PEP 7: Adding anonymous union / struct

2019-04-17 Thread Inada Naoki
On Wed, Apr 17, 2019 at 8:27 PM Victor Stinner wrote: > > AIX is somehow supported and uses xlc compiler: does xlc support this > C11 feature? I find Language Reference for v11.1 (2010/4/13) https://www-01.ibm.com/support/docview.wss?uid=swg27017991 I find "anonymous union" in p73. I can not

Re: [Python-Dev] PEP 7: Adding anonymous union / struct

2019-04-17 Thread Victor Stinner
AIX is somehow supported and uses xlc compiler: does xlc support this C11 feature? Do you want to use it in Python 3.8 and newer only? Victor Le mer. 17 avr. 2019 à 13:14, Inada Naoki a écrit : > > Hi, all. > > PEP 7 includes some C99 features. > I propose to add include anonymous union and

[Python-Dev] PEP 7: Adding anonymous union / struct

2019-04-17 Thread Inada Naoki
Hi, all. PEP 7 includes some C99 features. I propose to add include anonymous union and struct to the list. https://www.geeksforgeeks.org/g-fact-38-anonymous-union-and-structure/ Anonymous union and struct are C11 feature, not C99. But gcc and MSVC supported it as language extension from before