[issue26591] datetime datetime.time to datetime.time comparison does nothing

2016-03-25 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Python 3.6.0a0 (default:245a16f33c4b, Mar 25 2016, 14:11:43) [GCC 4.2.1 Compatible Apple LLVM 7.0.2 (clang-700.1.81)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import datetime >>> if datetime.time(22, 15) >

[issue26591] datetime datetime.time to datetime.time comparison does nothing

2016-03-23 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- nosy: +belopolsky ___ Python tracker ___

[issue26591] datetime datetime.time to datetime.time comparison does nothing

2016-03-21 Thread SilentGhost
SilentGhost added the comment: Jason, could you provide an actual paste of interactive interpreter session, so that any one could try to reproduce the issue. -- nosy: +SilentGhost stage: -> test needed type: -> behavior ___ Python tracker

[issue26591] datetime datetime.time to datetime.time comparison does nothing

2016-03-19 Thread jason crockett
New submission from jason crockett: if datetime.time(#blah) > datetime.time(#blah): [a][b] does nothing.. it doesnt raise an error. it doesnt run the if function even though the printout of variables compared says it should. 22:15:00 [a] 16:00:00 [b] True