view tests/test_parse_files/test_augassign.py @ 91:859d44f143b8

Implement Bytes in the AST.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sat, 25 Jun 2016 02:08:50 +0100
parents 209eb78135ea
children
line wrap: on
line source

a += 1
a -= 1
a *= 1
a @= 1
a /= 1
a %= 1
a **= 1
a >>= 1
a |= 1
a ^= 1
a &= 1
a //= 1