narodnik
narodnik
The old engine works: ```python from sympy import assuming, Q, ask, Symbol # a, b, d ∈ ℤ # d < 0 a = Symbol("a", integer=True) b = Symbol("b", integer=True)...
Played around with this a bit more, redefining all negative values as positive and ran into more issues again: ```python from sympy import assuming, Q, ask, Symbol a = Symbol("a")...
Reread the OP again. Here I'm repasting the code for you: ```python from sympy import assuming, Q, ask, Symbol a = Symbol("a") b = Symbol("b") d = Symbol("d") # a,...
See here for examples of OTF font features: https://rsms.me/inter/#features
plz merge
Why not just add rust formatting for `info!()` macros? Or macros which are simply like function calls (except using ! in their name).
Just adding some a use case for this: You want to embed Python in your application. Users can load plugins which are untrusted code. The app wants to be able...
When building for android target, the compiled harfbuzz is missing freetype support due to the system not having it installed. Should we make these changes: 1. Link freetype-sys as a...