Yuping Luo
Yuping Luo
It would be nicer if we can support math in the doc, as in [here](https://docs.rs/rust-latex-doc-minimal-example/0.2.0/rust_latex_doc_minimal_example/index.html). Given there is a lot of math in the doc, I'm wonder how the docstring...
To reproduce: ``` >>> import box >>> box.__version__ '7.0.0' >>> box.Box({'a.b': 1}) Box({'a.b': 1}) >>> box.Box({'a.b': 1}, box_dots=True) Traceback (most recent call last): File "", line 1, in File "box/box.py",...
Code to reproduce: ```python import serde from dataclasses import dataclass @serde.serde @dataclass class A: a: int @serde.serde(tagging=serde.InternalTagging('type')) @dataclass class B: x: list[int] | A o = B(x=A(a=1)) serde.json.from_json(B, serde.json.to_json(o)) ```...
Here is the code to reproduce (fsspec version 2024.3.1): ```python import fsspec fs = fsspec.filesystem('local') with fs.transaction: with fs.open('/tmp/a.txt.gz', 'wt', compression='infer') as f: f.write('Hello, world!\n') ``` Here is the error:...
In the Feature Comparison table, there is a warning sign for DoubleFloats on dynamic memory allocation. Could you please elaborate a little bit? Are you referring to the conversion from...
I'm wondering if it's possible to add a new note for every clip. I may have two motivations for this: 1. Easier management of header levels. Currently we need to...