* Minor documentation edit.

This commit is contained in:
wirawan
2010-11-11 18:00:01 +00:00
parent 8363eb03bc
commit 7dbef49f6c

View File

@@ -1,6 +1,6 @@
# -*- python -*-
#
# $Id: regexps.py,v 1.1 2010-10-06 16:37:42 wirawan Exp $
# $Id: regexps.py,v 1.2 2010-11-11 18:00:01 wirawan Exp $
#
# Created: 20101006
# Wirawan Purwanto
@@ -55,7 +55,8 @@ class regex(object):
def __mod__(self, s):
"""Match the string to the regex at the any position.
Too bad python does not have ~= like perl, so we use the
quirky % or == here."""
quirky % or == here.
And the regex object must be the LEFT operand!"""
self.m = self.rx.search(s)
return self.m
__eq__ = __mod__