[issue36470] dataclasses.replace raises an exception if InitVar with default argument is not provided.

2021-01-29 Thread Cosimo Lupo
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 &

[issue17128] OS X system openssl deprecated - installer should build local libssl

2018-01-11 Thread Cosimo Lupo
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

[issue6331] Add unicode script info to the unicode database

2015-09-21 Thread Cosimo Lupo
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

[issue24881] _pyio checks that `os.name == 'win32'` instead of 'nt'

2015-08-17 Thread Cosimo Lupo
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&