Valentin Berlier
Valentin Berlier
Agreed. I've been wondering the same thing. The documentation is a bit unclear on this.
Running into the same warnings too :+1:
I brought it up because some aspects of the 24.1.0 release were about being less wasteful with vertical space, and here the changes had the opposite effect. I'll close the...
Any update on this? If it's just a matter of tests I think I could make a pull request for that.
I have a local branch that I revisit from time to time to experiment with some of the stuff mentioned in the thread, but I haven't had the occasion to...
I won't be able to do anything about it in the coming weeks but I plan to start making releases for nbtlib v2 around september/october, it's going to be on...
A `Long` tag is a *signed* 64bit integer. The maximum allowed value is `9223372036854775807`. Your value would fit in an *unsigned* 64bit integer. `nbtlib` has a `from_unsigned` helper for encoding...
Last time I checked it does run the finalizers though. The method also calls `super().clear()`, which invokes the implementation provided by python's `MutableMapping` abstract base class, which calls `__delitem__` for...
Ooh yeah you're right, I guess this could be fixed by calling `self.preload()` before doing anything in `MultiCache.clear()`.
Arf, I apologize for leaving your issue unanswered for so long! I remember that back when I first saw the issue, I thought that allowing empty names could cause problems...