Keno Fischer
Keno Fischer
## Environment - Platform (select one): - [x] Anthropic API - [ ] AWS Bedrock - [ ] Google Vertex AI - [ ] Other: - Claude CLI version: 1.0.21...
## Environment - Platform (select one): - [x] Anthropic API - [ ] AWS Bedrock - [ ] Google Vertex AI - [ ] Other: - Claude CLI version: v1.0.24...
When a MethodError occurs, check if functions with the same name exist in other modules (particularly those of the argument types). This helps users discover that they may need to...
As noted in https://github.com/timholy/Revise.jl/issues/927#issuecomment-2924613076, the doc system uses an IdDict for type signatures, which is incorrect, because they do not have a stable hash. A trivial fix might be: ```...
``` julia> s = "\xc0\xa0\xe2\x88\xe2|" Error showing value of type String: SYSTEM (REPL): showing an error caused an error ERROR: 1-element ExceptionStack: Base.InvalidCharError{Char}('\xc0\xa0') Stacktrace: [1] throw_invalid_char(c::Char) @ Base ./char.jl:95 [2]...
Consider ``` julia> module Foo struct Bar; end length(::Bar) = 1 end Main.Foo julia> length(Foo.Bar()) ERROR: MethodError: no method matching length(::Main.Foo.Bar) The function `length` exists, but no method is defined...
## Environment - Platform (select one): - [x] Anthropic API - [ ] AWS Bedrock - [ ] Google Vertex AI - [ ] Other: - Claude CLI version: 1.0.28...
The [memory documentation](https://docs.anthropic.com/en/docs/claude-code/memory) states ``` Claude Code reads memories recursively: starting in the cwd, Claude Code recurses up to / and reads any CLAUDE.md or CLAUDE.local.md files it finds. This...
When a process exec's but does not fork, it can be confusing for users to know how to attach to the process they want. E.g. consider: ``` $ cat ls.sh...
In 1.12, we're cleaning up when implicit world age increments happen at toplevel. Because these test `eval` an expression and immediately call it, an `invokelatest` will likely be required (as...