Re: [Python-Dev] PEP 538 (review round 2): Coercing the legacy C locale to a UTF-8 based locale

2017-05-27 Thread Nick Coghlan
On 24 May 2017 at 02:34, Nick Coghlan wrote: > On 23 May 2017 at 18:38, INADA Naoki wrote: >> Would you add example demonstrates how coercing LANG helps people? > > I'm honestly not sure it does - I think it's an assumption I added to > the PEP early on, and never actually tested. Looking at it m

Re: [Python-Dev] Deprecate invalid ctypes call protection on Windows

2017-05-27 Thread Mariatta Wijaya
Thanks all. Documentation has been updated in https://bugs.python.org/issue30470 On May 23, 2017 9:13 PM, "Victor Stinner" wrote: Sure, make your change and then update libffi! Victor Le 23 mai 2017 18:19, "Steve Dower" a écrit : > On 23May2017 1212, Victor Stinner wrote: > >> 2017-05-22

Re: [Python-Dev] Aligning the packaging.python.org theme with the rest of the docs

2017-05-27 Thread Brett Cannon
On Fri, 26 May 2017 at 21:28 Nick Coghlan wrote: > Hi folks, > > Over on > https://github.com/pypa/python-packaging-user-guide/pull/305#issuecomment-304169735 > we're looking to update the theming of packaging.python.org to match > that of the language documentation at docs.python.org. > > Doing

Re: [Python-Dev] Aligning the packaging.python.org theme with the rest of the docs

2017-05-27 Thread Guido van Rossum
Are you also going to stop others from using the psf theme? On May 27, 2017 11:35, "Brett Cannon" wrote: > > > On Fri, 26 May 2017 at 21:28 Nick Coghlan wrote: > >> Hi folks, >> >> Over on https://github.com/pypa/python-packaging-user-guide/ >> pull/305#issuecomment-304169735 >> we're looking t

Re: [Python-Dev] Aligning the packaging.python.org theme with the rest of the docs

2017-05-27 Thread Nick Coghlan
On 28 May 2017 at 06:54, Guido van Rossum wrote: > Are you also going to stop others from using the psf theme? I think it would definitely make sense to discourage the use of this particular theme for projects that aren't relatively directly affiliated with the PSF - there are plenty of other pip

Re: [Python-Dev] PEP 538 (review round 2): Coercing the legacy C locale to a UTF-8 based locale

2017-05-27 Thread INADA Naoki
Now I approve the PEP 538. It's side-effect (just set LC_CTYPE envvar) seems simple enough and moderate enough. Locale coercion will save people from unwanted mojibake (escaped string) and locale warning will navigate people to configure locale properly. And there are configure options and envva

Re: [Python-Dev] PEP 538 (review round 2): Coercing the legacy C locale to a UTF-8 based locale

2017-05-27 Thread Nick Coghlan
On 28 May 2017 at 16:46, INADA Naoki wrote: > Now I approve the PEP 538. > > It's side-effect (just set LC_CTYPE envvar) seems simple enough and > moderate enough. > > Locale coercion will save people from unwanted mojibake (escaped string) > and locale warning will navigate people to configure lo