Minus operator versus unary minus

Peter Otten __peter__ at web.de
Sat May 30 03:56:38 EDT 2015


The following modification of the collections.Counter implementation

https://hg.python.org/cpython/rev/fe4efc0032b5

was just checked in with the line

result[elem] = 0 - count

Does this have an advantage over the obvious

result[elem] = -count

?




More information about the Python-list mailing list