In this code mDATE0 for 3 items a, b, z is:
mUNIQUE: z | mDATE0: 2010-11-14 14:55:04.293000
mUNIQUE: b | mDATE0: 2010-11-14 14:53:34.824000
mUNIQUE: a | mDATE0: 2010-11-14 14:50:14.155000
But when I do
...
utc_tuple = rep.mDATE0.utctimetuple()
...
corresponding utc_tuples are:
utc_tuple: time.struct_time(tm_hour=14, tm_min=55)
utc_tuple: time.struct_time(tm_hour=14, tm_min=55)
utc_tuple: time.struct_time(tm_hour=14, tm_min=55)
In other words min=55 for all items while mDATE0 has
z --> min=55;
b --> min=53;
a --> min=50
What am I doing wrong? Please see my related question. Thanks.
That isn’t code! Please post short, complete example code to illustrate a problem. Below is what I think you are trying to do, but without seeing your code, there is no way for anyone to point your bug.
Output: