En Wed, 16 Apr 2008 13:10:42 -0300, [EMAIL PROTECTED] <[EMAIL PROTECTED]>
escribió:
> This is the code that is causing memory leak in 64 bit python [but not
> in 32 bit python].. is something wrong in the code?
>
> [... Python code using the datetime module ...]
>> the memory usage of a python a
This is the code that is causing memory leak in 64 bit python [but not
in 32 bit python].. is something wrong in the code?
now = datetime.datetime.now()
oneday = datetime.timedelta(days=1)
def birthdaycompare(a, b):
if a is None and b:
return 1
if a and b is None:
return -1