mjschultz / py-radix

Python radix tree implementation for IPv4 and IPv6 prefix matching.
Other
119 stars 37 forks source link

Code simplification and optimizations #16

Closed sorc1 closed 9 years ago

sorc1 commented 9 years ago

I'm using C part of py-radix in my projects. So, I need all the algorithm to be in a separate library. For now, some useful functions (Radix_search_covered(), for example) are not parts of a radix library but are parts of C-Python glue. Some are just private (static) functions.

So, the main target was to extend C radix library with new functionality. Other things done:

mjschultz commented 9 years ago

Sorry about the delay, I've pushed your changes to PyPI so you can now do pip install py-radix==0.9.1

mjschultz commented 9 years ago

Thanks!

sorc1 commented 9 years ago

Thank you!