Get rid of void-returning functions
Module-level code used to return void, but this causes some special-casing, so switch to having them return None. Also, CPython has their module code objects return None, so it's a small compatibility gain as well.
Showing
Please register or sign in to comment