- Nov 29, 2016
-
-
Andreas Klöckner authored
-
Andreas Klöckner authored
[bugfix] Use base classes for ImmutableRecord in correct order
-
Dominic Kempf authored
A very weird bug: The order of base classes actually matters here, because if __hash__ and __eq__ are defined in the wrong order, __hash__ will get deleted (in 3). MWE: ``` class X(object): def __eq__(self, other): return True class Y(object): def __hash__(self): return 0 class Z1(Y,X): pass class Z2(X,Y): pass hash(Z1()) hash(Z2()) ```
-
- Nov 28, 2016
-
-
Andreas Klöckner authored
-
Andreas Klöckner authored
-
Andreas Klöckner authored
-
- Oct 11, 2016
-
-
Andreas Klöckner authored
Import numpy or skip for test_spatial_btree
-
Kubilay Kocak authored
test_spatial_btree currently fails if numpy is not available. test_p_convergence_verifier uses the pytest importorskip function to skip the test when numpy is not available. Do the same for test_spatial_btree.
-
- Oct 10, 2016
-
-
Andreas Klöckner authored
-
- Oct 09, 2016
-
-
Andreas Klöckner authored
-
Andreas Klöckner authored
-
Andreas Klöckner authored
-
Andreas Klöckner authored
-
Andreas Klöckner authored
-
- Oct 03, 2016
-
-
Andreas Klöckner authored
-
- Oct 02, 2016
-
-
Andreas Klöckner authored
-
Andreas Klöckner authored
-
- Aug 27, 2016
-
-
Andreas Klöckner authored
-
- Aug 10, 2016
-
-
Andreas Klöckner authored
-
Andreas Klöckner authored
-
- Aug 09, 2016
-
-
Andreas Klöckner authored
-
Andreas Klöckner authored
-
- Jun 12, 2016
-
-
Andreas Klöckner authored
-
- Jun 06, 2016
-
-
Andreas Klöckner authored
-
- May 17, 2016
-
-
Andreas Klöckner authored
-
Andreas Klöckner authored
Fix prefork for Python 2.6.
-
Freddie Witherden authored
-
Andreas Klöckner authored
-
-
Andreas Klöckner authored
-
- May 01, 2016
-
-
Andreas Klöckner authored
Async Support For Prefork
-
Freddie Witherden authored
-
Freddie Witherden authored
This removes the deprecated function call_capture_stdout and contains some whitespace tweaks.
-
- Apr 21, 2016
-
-
Andreas Klöckner authored
-
- Mar 22, 2016
-
-
Andreas Klöckner authored
-
- Mar 21, 2016
-
-
Andreas Klöckner authored
-
Andreas Klöckner authored
-
Andreas Klöckner authored
-
- Jan 14, 2016
-
-
Andreas Klöckner authored
-
- Jan 06, 2016
-
-
Andreas Klöckner authored
-