Boris Verkhovskiy
Boris Verkhovskiy
This PR adds all of curl's arguments as they appear in curl's source code right now, as well as allowing shortening of arguments like curl does, so for example you...
and format the files dict format correctly
`xgettext -c somefile.c` can produce a po file with an entry like this: ``` msgid "" "this is a long piece of text that should wrap on to multiple lines...
https://www.gnu.org/software/bash/manual/html_node/ANSI_002dC-Quoting.html Expected result: ``` >>> list(bashlex.split("echo $'hello'")) ['echo', 'hello'] >>> list(bashlex.split("echo $'hello\\nworld'")) ['echo', 'hello\nworld'] # notice \\n becomes a real newline character \n ``` Actual result (`bashlex` 0.15): ``` >>>...
based on [curl-to-ruby](https://github.com/jhawthorn/curl-to-ruby).
Closes #85
CPython 3.10 ```pycon >>> 1 / 10**309 1e-309 ``` RustPython 0.1.2 ```none >>>>> 1 / 10**309 0.0 >>>>> 1e-309 1e-309 ``` This is the reason this test is failing: https://github.com/RustPython/RustPython/blob/b8f276f8d76a3c02ccaca19dc638bc545abb5cf7/Lib/test/test_statistics.py#L1477-L1479
#### Is your feature request related to a problem? Please describe. It's related to the problem of sending `multipart/form-data` with Axios on Node.js #### Describe the solution you'd like I...