Example #1
0
def getdate(d):
    return asm.getdate_guess(d)
Example #2
0
def getdate(d, noblanks=False):
    rv = asm.getdate_guess(d)
    if noblanks and rv is None: rv = asm.now()
    return rv
Example #3
0
def getdate(d):
    if d.find("?") != -1: return None
    return asm.getdate_guess(d)