]> granicus.if.org Git - python/commit
Revert r82044, since it changed the semantics of negated imaginary literals.
authorMark Dickinson <dickinsm@gmail.com>
Wed, 30 Jun 2010 10:34:53 +0000 (10:34 +0000)
committerMark Dickinson <dickinsm@gmail.com>
Wed, 30 Jun 2010 10:34:53 +0000 (10:34 +0000)
commitce5b6c43bfbd1e016463c92f43c9075f64fafaa6
treebbb68b7c8d03d33a8f4681c37416fdd011cfff81
parent881c1b4c102e9404c10de159a7f01442c2d7224e
Revert r82044, since it changed the semantics of negated imaginary literals.
Before r82044, '-7j' became complex(0.0, -7.0);  afterwards it was
complex(-0.0, -7.0).  See issue 9011.
Lib/test/test_parser.py
Misc/NEWS
Python/ast.c