diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-08-28 20:56:27 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-08-28 20:56:27 (GMT) |
commit | c6d958192e18c2d05f6ecd2d179d056478342ed3 (patch) | |
tree | 6a7bfb93a8d2a8f6a2c560d19949486d1c8df89a /Misc | |
parent | 5592e4d7d592a0e9156da7d0e4a290d64e982872 (diff) | |
download | cpython-c6d958192e18c2d05f6ecd2d179d056478342ed3.zip cpython-c6d958192e18c2d05f6ecd2d179d056478342ed3.tar.gz cpython-c6d958192e18c2d05f6ecd2d179d056478342ed3.tar.bz2 |
Note change in fp literal syntax (e.g. "3e-" worked by accident before).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -3,6 +3,9 @@ What's New in Python 2.2a3? Core ++ An old tokenizer bug allowed floating point literals with an incomplete + exponent, such as 1e and 3.1e-. Such literals now raise SyntaxError. + Library Tools |