Stefano Miccoli
Stefano Miccoli
I found another problem with triple quoted strings that seems not to be covered in related open bugs (#123, #230, #237). ``` >>> print(toml.__version__) 0.10.0 >>> test = 'a.b =...
Is there a reason for which the [`WhiteKernel`](https://scikit-learn.org/stable/modules/generated/sklearn.gaussian_process.kernels.WhiteKernel.html#sklearn.gaussian_process.kernels.WhiteKernel) is not implemented in `operator_converters/_gp_kernels.py`? Although workarounds are possible, the possibility of directly converting a nested kernel that contains a `WhiteKernel` in...
**What issue did you see ?** Suppose that - Client A repedeatly pushes different objects to the same bucket/key - Client B performs a `download_file` or `download_fileobj` of bucket/key I...
`numpy.round` returns wrong value when decimals are negative and argument is `np.int64` ### Reproducing code example: ```python >>> import numpy as np >>> np.round(2**63-1, -3) -9223372036854775808 >>> round(2**63-1, -3) 9223372036854776000...
## Description Unable to use `[` `]` in editor with Italian keyboard on macOS. ## Reproduce The Italian keyboard does not have `[` `]` keys, which are accessed via the...
## Description After `\usepackage{unicode-math}` the command `\setmonofont` does not work as expected. ## Add info or delete as appropriate: - Relevant for XeTeX - Issue tracker has been searched for...
In all examples involving “servers” there is a `try ... finally` block: ```python try: # some code finally: # Unregister the DBus service and objects. SESSION_BUS.disconnect() ``` I would suggest...
I'm one of those poor souls that rely on Python ability to json encode/decode IEEE 754 infinity and nan, see [*Infinite and NaN Number Values*](https://docs.python.org/3/library/json.html#infinite-and-nan-number-values). Since these are supported in...
### Zarr version v2.17.2 ### Numcodecs version v0.12.1 (not relevant?) ### Python Version 3.12 ### Operating System Mac (not relevant?) ### Installation pip in virtual environment ### Description Not sure...
In order to obtain a fully reproducible build one has to build the wheel with the same `umask`. Here how to reproduce the issue; tested with wheel 0.34.2, using pypa/sampleproject...