- Nov 22, 2024
-
-
- Nov 19, 2024
-
-
- Nov 14, 2024
-
-
Matthias Diener authored
* LazilyUnpickling{Dict,List}: better repr * add type to repr of PickledObject
-
- Nov 13, 2024
-
-
- Nov 07, 2024
-
-
(for now, matches existing behavior, but is clearly incorrect)
-
-
-
-
-
-
-
-
-
-
- Nov 06, 2024
-
-
This restores compatibility with pymbolic 2022.2 x-ref: https://github.com/firedrakeproject/loopy/issues/27
-
- Nov 02, 2024
-
-
- Oct 30, 2024
-
-
- Oct 22, 2024
-
-
- Oct 11, 2024
-
-
Documentation defined the unpack argument twice. Now it only defines it once and also defines the pack argument.
-
- Oct 08, 2024
-
-
Andreas Klöckner authored
-
- Sep 22, 2024
-
-
- Sep 09, 2024
-
-
Kaushik Kulkarni authored
* Require that happens_after is not mutable * Tweak type tests for happens_after --------- Co-authored-by: Andreas Kloeckner <inform@tiker.net>
-
- Sep 04, 2024
-
-
Andreas Klöckner authored
-
- Sep 01, 2024
-
-
Andreas Klöckner authored
-
- Aug 25, 2024
-
-
On Python 3.12, this provokes a stack overflow in the scheduler. It is not quite clear why that's the case; pure-Python recursion even with generators seems to respond well to setrecursionlimit(): ```py def f(n): if n: yield from f(n-1) else: yield 5 import sys sys.setrecursionlimit(3500) print(list(f(3400))) ``` That said, there have been [behavior](https://github.com/python/cpython/pull/96510) [changes](https://github.com/python/cpython/issues/112215) in Py3.12 in this regard, but it is not clear what exactly about Loopy's behavior makes it fall into the 'bad' case.
-
-