Blender.Const seems to be gone, at least in version 2.41. With the code:
import Blender
Blender.Get(Blender.Const.BP_CURTIME);
gives me
Attribute Error: 'module' object has no attribute 'Const'
so does
print dir(Blender.Const);
Is there a new const attribute?