Fix for bug [ 561796 ] string.find causes lazy error
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
index 103649d..d0a2885 100644
--- a/Include/unicodeobject.h
+++ b/Include/unicodeobject.h
@@ -983,7 +983,8 @@
     );
 
 /* Return the first position of substr in str[start:end] using the
-   given search direction or -1 if not found. */
+   given search direction or -1 if not found. -2 is returned in case
+   an error occurred and an exception is set. */
 
 extern DL_IMPORT(int) PyUnicode_Find(
     PyObject *str,		/* String */