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 fi

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 str

[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 C