=== modified file 'Doc/library/sysconfig.rst' --- Doc/library/sysconfig.rst 2010-06-27 21:32:30 +0000 +++ Doc/library/sysconfig.rst 2010-09-16 19:32:12 +0000 @@ -217,6 +217,10 @@ Return the path of :file:`pyconfig.h`. +.. function:: get_makefile_filename() + + Return the path of :file:`Makefile`. + Using :mod:`sysconfig` as a script ---------------------------------- === modified file 'Misc/NEWS' --- Misc/NEWS 2010-09-14 19:41:23 +0000 +++ Misc/NEWS 2010-09-16 19:32:24 +0000 @@ -52,6 +52,8 @@ Library ------- +- Issue #9877: Expose sysconfig.get_makefile_filename() + - Issue #9854: The default read() implementation in io.RawIOBase now handles non-blocking readinto() returning None correctly.