--- ssizecheck.py.orig	2006-10-20 09:31:14.000000000 -0400
+++ ssizecheck.py	2006-10-17 17:37:58.000000000 -0400
@@ -9,6 +9,16 @@
 
 def check(file):
     for lineno, text in enumerate(open(file)):
+
+        # modified slightly to skip lines that start with 
+        # "/* PYTHON 2.5:". This allows us to insert comments in 
+        # source files where attention may be required without 
+        # creating false positives to the output
+        line = text.strip()
+        if line.startswith('/* PYTHON 2.5:'):            
+            continue
+        # end of modification
+
         for token in re.findall("\w+", text):
             if token in API_OUTPUT:
                 message = "WARNING: %r uses Py_ssize_t for output"\
