mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-24 19:52:54 +01:00
Remove useless comments and fix a SyntaxError
Signed-off-by: James Vega <jamessan@users.sourceforge.net>
This commit is contained in:
parent
dd4bc64e32
commit
bb759259b8
@ -140,7 +140,7 @@ def isChannel(s, chantypes='#&+!', channellen=50):
|
|||||||
len(s) <= channellen and \
|
len(s) <= channellen and \
|
||||||
len(s.split(None, 1)) == 1
|
len(s.split(None, 1)) == 1
|
||||||
|
|
||||||
_patternCache = utils.structures.CacheDict(1000) # Arbitrarily chosen.
|
_patternCache = utils.structures.CacheDict(1000)
|
||||||
def _hostmaskPatternEqual(pattern, hostmask):
|
def _hostmaskPatternEqual(pattern, hostmask):
|
||||||
try:
|
try:
|
||||||
return _patternCache[pattern](hostmask) is not None
|
return _patternCache[pattern](hostmask) is not None
|
||||||
@ -168,7 +168,7 @@ def _hostmaskPatternEqual(pattern, hostmask):
|
|||||||
_patternCache[pattern] = f
|
_patternCache[pattern] = f
|
||||||
return f(hostmask) is not None
|
return f(hostmask) is not None
|
||||||
|
|
||||||
_hostmaskPatternEqualCache = utils.structures.CacheDict{1000) # Arbitrarily chosen.}
|
_hostmaskPatternEqualCache = utils.structures.CacheDict(1000)
|
||||||
def hostmaskPatternEqual(pattern, hostmask):
|
def hostmaskPatternEqual(pattern, hostmask):
|
||||||
"""pattern, hostmask => bool
|
"""pattern, hostmask => bool
|
||||||
Returns True if hostmask matches the hostmask pattern pattern."""
|
Returns True if hostmask matches the hostmask pattern pattern."""
|
||||||
|
Loading…
Reference in New Issue
Block a user