Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Speedups: no cinit, no pickling (#2851)
* Speedups: remove unnecessary cinit This was meant for (memory) safety, but cython docs clearly state that this is done automatically. The code generated for cinit with args is what triggers a 'possible null deref' in clang's static analyzer, so by removing cinit, we can now use static analysis. * Speedups: disable pickling ... ... of LocationStore and internal classes. This reduces code size and avoids accidentally pickling them.
- Loading branch information