From 32fbe599784f80f08e7ecd4ebdde158797f0a5ff Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Mon, 12 Nov 2007 15:01:33 +0000 Subject: Merged revisions 58939-58946 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r58940 | martin.v.loewis | 2007-11-12 05:53:02 +0100 (Mon, 12 Nov 2007) | 3 lines Only set rl_completion_display_matches_hook if there is a Python hook function. Fixes #1425. ........ r58941 | martin.v.loewis | 2007-11-12 06:14:05 +0100 (Mon, 12 Nov 2007) | 2 lines Patch #1418: Make the AC_REPLACE_FUNCS object files actually work. ........ r58942 | walter.doerwald | 2007-11-12 11:01:33 +0100 (Mon, 12 Nov 2007) | 2 lines Fix TextCalendar.prweek(). This closes issue #1427. ........ --- Python/hypot.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Python/hypot.c') diff --git a/Python/hypot.c b/Python/hypot.c index 755d0c31c8..9d3c0d0bac 100644 --- a/Python/hypot.c +++ b/Python/hypot.c @@ -1,7 +1,6 @@ /* hypot() replacement */ -#include "pyconfig.h" -#include "pyport.h" +#include "Python.h" double hypot(double x, double y) { -- cgit v1.2.1