[Python-checkins] r68811 - python/trunk/Objects/stringlib/fastsearch.h

benjamin.peterson python-checkins at python.org
Tue Jan 20 19:58:27 CET 2009


Author: benjamin.peterson
Date: Tue Jan 20 19:58:27 2009
New Revision: 68811

Log:
fix url

Modified:
   python/trunk/Objects/stringlib/fastsearch.h

Modified: python/trunk/Objects/stringlib/fastsearch.h
==============================================================================
--- python/trunk/Objects/stringlib/fastsearch.h	(original)
+++ python/trunk/Objects/stringlib/fastsearch.h	Tue Jan 20 19:58:27 2009
@@ -5,7 +5,7 @@
 
 /* fast search/count implementation, based on a mix between boyer-
    moore and horspool, with a few more bells and whistles on the top.
-   for some more background, see: http://effbot.org/stringlib */
+   for some more background, see: http://effbot.org/stringlib.htm */
 
 /* note: fastsearch may access s[n], which isn't a problem when using
    Python's ordinary string types, but may cause problems if you're


More information about the Python-checkins mailing list