import re
comment = """
/*
******************************************************************
$Log: oldfile.c,v $
Revision 11.4  2000/01/20 19:01:41  userid
blah blah blah
 
*/
"""

matches = re.search(r"(\$Log:.*[\r\n]*.*[\r\n])(.*)", comment)
print matches.group(2)