aspell-python icon indicating copy to clipboard operation
aspell-python copied to clipboard

Python wrapper for aspell (C extension and python version)

Results 13 aspell-python issues
Sort by recently updated
recently updated
newest added

Memory leak is created when running this code: ``` import aspell import gc spellChecker = aspell.Speller('lang', 'en') word = "TNKLR" for j in range(0,10000): collected = gc.collect() print('gc') for i...

This solved the mem leak in python2 and python3 (remember to fix linux aspell first by taking fix-600)