--On Montag, 9. August 2004 13:17 Uhr +0200 Andreas Jung
<lists at andreas-jung.com> wrote:
>
> print DateTime() < DateTime('2002/12/12')
>
> -aj
>
Ups...falsche Liste :-)
from time import *
print cmp(localtime(time()), strptime('12.12.2004', '%d.%m.%Y'))
sollte von Python aus gehen.
Andreas