http://hg.python.org/cpython/rev/93bf227664d6 changeset: 88390:93bf227664d6 user: Brett Cannon <brett at python.org> date: Fri Jan 10 07:43:55 2014 -0500 summary: Remove an unneeded cast. files: Python/import.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -975,7 +975,7 @@ /*[clinic end generated code: checksum=4f55bad308072b30ad1921068fc4ce85bd2b39bf]*/ { - update_compiled_module((PyCodeObject*)code, path); + update_compiled_module(code, path); Py_RETURN_NONE; } -- Repository URL: http://hg.python.org/cpython