]> granicus.if.org Git - python/commit
- Removed FutureWarnings related to hex/oct literals and conversions
authorGuido van Rossum <guido@python.org>
Sat, 29 Nov 2003 23:52:13 +0000 (23:52 +0000)
committerGuido van Rossum <guido@python.org>
Sat, 29 Nov 2003 23:52:13 +0000 (23:52 +0000)
commit6c9e130524533263b690e86639a36b6f3e7a8eeb
tree39023f825688f630245ddcaa60af9942a859522c
parent37e136373e0d9ab3bdf25ecd9c42b86281ed21d3
- Removed FutureWarnings related to hex/oct literals and conversions
  and left shifts.  (Thanks to Kalle Svensson for SF patch 849227.)
  This addresses most of the remaining semantic changes promised by
  PEP 237, except for repr() of a long, which still shows the trailing
  'L'.  The PEP appears to promise warnings for operations that
  changed semantics compared to Python 2.3, but this is not
  implemented; we've suffered through enough warnings related to
  hex/oct literals and I think it's best to be silent now.
Doc/ref/ref2.tex
Lib/test/test_builtin.py
Lib/test/test_compile.py
Lib/test/test_format.py
Lib/test/test_grammar.py
Lib/test/test_hexoct.py
Misc/NEWS
Objects/intobject.c
Objects/stringobject.c
Objects/unicodeobject.c
Python/compile.c