-
Python 2.7 is pretty much at the end of it's support life-span (and way past the end of development). We dev'd for 2.7 originally b/c of external constraints in our first runtime environments. Those a…
-
From google spreadsheet which no one reads `X-(`
```
sage: sum(lcm(10,x), x, 1, 10) # Incorrect
550
sage: sum([lcm(10,i) for i in xrange(1,11)]) # Correct
320
```
CC: @kcrisman @sagetrac-kbaut…
-
```
This originally was a segfault issue, but in trying to reproduce it I got a
different error. I'll release the original source in a few weeks.
Anyway, here's a case:
def map_fail(config):
#a…
-
```
This originally was a segfault issue, but in trying to reproduce it I got a
different error. I'll release the original source in a few weeks.
Anyway, here's a case:
def map_fail(config):
#a…
-
Eventually we need reliable estimates of how often X Bitcoin blocks will occur before Y Zcash blocks, so that we can set safe locktimes on each chain. With the help of a statistician friend, I wrote a…
-
There are some minor modifications in order to make this great project work with python3
1. In _shape_context.py_, change **from utils import pairwise_distance** to **from utils.utils import pairwi…
-
A data-driven test covering an xrange of 1 million numbers generates 1 million xUnit XML reports.
This brings most tooling to a crawl, in particular Jenkins.
Each data point should not generate a …
-
I tested the leven method as I was interested to see how fast and accurate it is. It seems that leven with hnsw (that is approximate leven) is slower than with brute_force (exact leven). First the ti…
-
I have a minimal example reproducing a bug with linked axis and setting limits on them.
In this example when you click the focus button both plot series are searched for the min and max values in y…
-
The following snippet will generate the attached wrong formatted bar chart. If more bars are used the formatting looks okay, so somehow the bar width and pos calculation for one or two datapoints is w…