Gabriel Scherer
Gabriel Scherer
(Note: `Printf.sprintf "%S"` is guaranteed to quote strings, and the content is escaped according to `String.escaped` which follows the OCaml lexical convention (rather than shell quoting rule).) How do we...
I believe that this would still work with an optional parameter: ```ocaml OCaml version 5.4.0 # let f ?(x="default") s = (x, s);; val f : ?x:string -> 'a ->...
The PR does one step of rewriting, but I wondered if these primitives could be nested, and whether we would want to normalize their repeated applications in this case. It...
I think of `__FUNCTION__` as a best-effort description of the location of the current code position, and in my mind the "best-effort" part means that it could evolve in the...
Very good! Then I suggest we merge once you have a Changes entry :-)
We could possibly backport specific changes for your testing, but we don't typically release patch releases except for the latest version (so it would be 5.4.1 rather than 5.3.1). Are...
I discussed this PR again with @lthls yesterday. We both agree that it is going in the right direction, but we also talked about a different approach where we would...
After discussion at the triaging meeting, we believe that the best behavior would be to actually support this syntax, accepting nested `with type` and interpreting the later ones as `and`.
Some of the static discipline in the code is moved around instead of removed entirely. 1. I keep the distinction between promise states that may be proxies and those that...
I understand from https://github.com/ocsigen/lwt/issues/1079#issuecomment-3557212920 that this PR proved difficult to review. I wondered if it's worth having if multi-domain gets temporarily removed from Lwt. I have mixed opinions on this:...