Armoha
Armoha
This seems to related with https://github.com/projectfluent/fluent/issues/80. Localization example on [(comment)](https://github.com/projectfluent/fluent/issues/80#issuecomment-359819560): > ```fluent > -creature-fairy = fairy > -creature-elf = elf > .StartsWith = vowel > > you-see = > You...
Isn't this just reverting #232 ? Merging this PR may reopen other issues like #228 and #231 .
I have similar problem with self-referenceable class: (minimized example, original Cython code is here: https://github.com/phu54321/eudplib/blob/master/eudplib/core/allocator/constexpr.pyx#L31-L42) ```pyx # Cython code to be rewritten cdef class ConstExpr: def __init__(self, baseobj, offset=0): self.baseobj...
The issue still exists with mypy 0.991, Python 3.11.1 and Windows 10. ```py def IgnoreColor(s: bytes) -> bytes: bytes(filter(lambda x: not (0x01
Actually I started to lose interest in making `static` field as public API. It complicates the language but does not hold much weight. e.g. ancient version of Rust had immutable...
It's mostly solved in [euddraft 0.9.10.2](https://github.com/armoha/euddraft/blob/master/CHANGELOG.md#09102---20231211).
going to structure eudplib project similar to https://github.com/pyca/cryptography
It's not just `EUDFuncPtr` but applying to every epScript globals: https://github.com/armoha/euddraft/blob/master/CHANGELOG.md#bugfix-7 > ## Bugfix > - [epScript] Don't wrap global consants with ExprProxy unless there's forward-declared function call. > *...
Just return `EUDArray`, you don't need to return multiple values in this case. ```js function shuffle(.....): EUDArray { // Clarify return type const ret = EUDArray(8); ... // return ret[0],...