Cosimo Lupo added the comment:
any updates on this? Would be great if any of the two candidate PRs was merged.
It's basically impossible to use replace() with default InitVars..
Thank you in advace
--
nosy: +anthrotype
___
Python tracker
&
Cosimo Lupo added the comment:
Hello,
I see that the official Python.org OSX 10.6+ installers are still linking with
OSX outdated OpenSSL (0.9.8zh 14 Jan 2016; I'm using macOS High Sierra 10.13.2).
In the installer's README, they motivates this because:
> Apple's 0.9.8 v
Cosimo Lupo added the comment:
I would very much like a `script()` function to be added to the built-in
unicodedata module.
What's the current status of this issue?
Thanks.
Cosimo
--
nosy: +Cosimo Lupo
___
Python tracker
<http://bugs.py
New submission from Cosimo Lupo:
the `_pyio` module at line 16 tries to check whether it is running on Windows
platform, by doing:
```
if os.name == 'win32':
from msvcrt import setmode as _setmode
else:
_setmode = None
```
However, the string returned by os.name is 'nt&