diff options
| -rw-r--r-- | README.md | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -84,6 +84,11 @@ configurations generated by Kconfiglib with configurations generated by ## Misc. notes ## + * Using [`__slots__`](https://docs.python.org/3.1/reference/datamodel.html#slots) + on classes would speed things up a bit and save memory. (genboardscfg.py went + from 1.6 to 1.4 seconds on my system for example.) It'd remove some flexibility + though. + * Kconfiglib works well with [PyPy](http://pypy.org). It might give a nice speedup over CPython when batch processing a large number of configurations, as well as when running the test suite. |
