Message323174
| Author | vtudorache |
|---|---|
| Recipients | belgort, cheryl.sabella, ned.deily, rhettinger, taleinat, terry.reedy, vtudorache, wordtech |
| Date | 2018-08-05.20:24:35 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1533500675.96.0.56676864532.issue34047@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
Check the commands below and the results to see why the problem with the mouse wheel appeared: >>> a = 1 >>> a >= 0 == True False >>> (a >= 0) == True True >>> a >= (0 == True) True >>> a >= 0 == False True >>> (a >= 0) == False False >>> a >= (0 == False) True >>> (a >= 0) == True True |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2018-08-05 20:24:36 | vtudorache | set | recipients: + vtudorache, rhettinger, terry.reedy, taleinat, wordtech, ned.deily, cheryl.sabella, belgort |
| 2018-08-05 20:24:35 | vtudorache | set | messageid: <1533500675.96.0.56676864532.issue34047@psf.upfronthosting.co.za> |
| 2018-08-05 20:24:35 | vtudorache | link | issue34047 messages |
| 2018-08-05 20:24:35 | vtudorache | create | |