From d464c8ba15fc6998932967b2b09a273447cd3fd4 Mon Sep 17 00:00:00 2001 From: calvin Date: Mon, 11 Aug 2003 12:03:36 +0000 Subject: [PATCH] check for python2.3 git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1000 e7d03fd6-7b0d-0410-9947-9c21f3af8025 --- linkcheck/parser/htmlsax.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/linkcheck/parser/htmlsax.h b/linkcheck/parser/htmlsax.h index aa4b565f..f0f1c16d 100644 --- a/linkcheck/parser/htmlsax.h +++ b/linkcheck/parser/htmlsax.h @@ -3,13 +3,13 @@ #include "Python.h" -/* require Python >= 2.0 */ +/* require Python >= 2.3 */ #ifndef PY_VERSION_HEX -#error please install Python >= 2.0 +#error please install Python >= 2.3 #endif -#if PY_VERSION_HEX < 0x02000000 -#error please install Python >= 2.0 +#if PY_VERSION_HEX < 0x02030000 +#error please install Python >= 2.3 #endif /* user_data type for SAX calls */