Closed jamesturk closed 9 years ago
pip install -e .; python -c "import jellyfish; print jellyfish.damerau_levenshtein_distance(u'test', u'test')"
crashes w/ a MemoryError
initial debugging points to the malloc((len1+2)) * cols * sizeof(size_t)) call
notably doesn't crash locally w/ tox, but does crash on travis... memory errors :-1:
pip install -e .; python -c "import jellyfish; print jellyfish.damerau_levenshtein_distance(u'test', u'test')"
crashes w/ a MemoryError
initial debugging points to the malloc((len1+2)) * cols * sizeof(size_t)) call