Trim21
Trim21
https://github.com/bittorrent/bittorrent.org/issues/153 here `d3:keyi1e3:keyi2ee` or `d3:keyi2e3:keyi1ee` are same directory but can have different bencode content. This may confusing info_hash generator. save torrent will result into different info_hash
pep440 provice a lax regex and a canonical regex, could we have a strict version check with canonical regex? which mean, `0.0.1.a0` is invalid, and it's normalized result `0.0.1a0` is...
looks like it only need hatch here https://github.com/joshua-auchincloss/hatch-cython/blob/0488f78e3abbe7cc3f5a3f293ff49736cff40929/src/hatch_cython/config/config.py#L7 it's a 2 lines function ```python def running_in_ci() -> bool: return any(os.environ.get(env_var) in {'true', '1'} for env_var in ('CI', 'GITHUB_ACTIONS')) ``` can...
I'm using hatch-cython with cibuildwheel, and wheel include extra so/pyd files. Looks like there are some bug in cleanup code. This is not a big problem, because python will only...
I have some project using uvicorn and it will config python stdlib logging with fileConfig or dictConfig. I want to pipe logging from stdlib logging to loguru, hope we can...
[document](https://pkg.go.dev/golang.org/x/exp#section-readme) says `golang.org/x/exp` doesn't follow go 1 compatibility promise, so copy the package we used to internal for future compatibility promise. In the future if downsteam user import exp with...
there are many testing assert style in this project. for example,`"github.com/stretchr/testify/assert"`, `"github.com/stretchr/testify/require"`, `github.com/frankban/quicktest` and bare compare. Are you open to unify these testing asserts to `github.com/stretchr/testify/require` only?
Client not will be ablt to check resposne body size limit. If server return a large response than expected, it will discard the response and return a err `ErrResponseBodyTooLarge`. ```golang...
go-resty will read all response in to memory, is it possible to set a max body limit? I can send a PR if you are open to this feature.
currently client support gzip only, is it possible to add defalte support with `compress/flate`?