Andy Hayden
Andy Hayden
I was sure there was an issue about CLRF ~~but I can't find it~~ Edit: [here](https://github.com/JuliaLang/julia/issues/10833). I was wondering if the text should go through: ``` replace(..., r"\r(\n)?", '\n') ```...
Should `import Markdown` just import `Base.Markdown` on v0.4-? That'd solve different Markdown and Base.Markdown being potentially different. (I think it'll also make it easier to depreciate Markdown.jl - for 0.5...
There's been quite a few updates to Markdown - good thing is you can just paste from Base (I think?). There's a couple of PRs pending (horizontalrules and h4+) which...
This is fixed in 0.4 master, and will be in next release of Markdown.jl: ``` julia> md"""column1 | column2 --------|-------- item1 | thing1 item2 | thing2 item3 | thing3""" column1...
It looks like this block should catch either socket.error or IOError: https://github.com/boto/boto3/blob/328f658e93a03eff19daf73d19b7c2b8ba4eb4b8/boto3/s3/transfer.py#L278-L287 since s3transfer is not raising a ClientError in this case. Happy to put together a PR adding this.
IMO users are more likely to be retrying on a ClientError also, as that occurs much more frequently than the socket.error. Personally I was doing: ``` try: ... except (ClientError,...
It should be a ClientError/subclass. People who have stumbled into this surprising and infrequent error may well be catching socket.error and OSError **as well as** ClientError - however most people...
still an issue
Some progress using rust-musl-builder, but run into GLIBC issue (maybe?): https://gist.github.com/hayd/ae5cbe81117863fff98c2f0c877f2b34 ``` /usr/bin/ld: /home/rust/src/deno/target/x86_64-unknown-linux-musl/release/deps/deno-9173e3687c7172b6: hidden symbol `__dso_handle' isn't defined /usr/bin/ld: final link failed: Bad value collect2: error: ld returned 1...
🤷♂ I think the objective is for musl to statically link, specifically not to link them to that specific system... this might already be possible with some flags? (The environment...