summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-01-15 00:31:49 (GMT)
committerGuido van Rossum <guido@python.org>2007-01-15 00:31:49 (GMT)
commit523d4f942c108db6fcd94a26d1cfd1d579d49426 (patch)
tree95c7cc7634cb729d87b3161bfb42fde2e413082f /Misc/NEWS
parentf4100005ae552ab4d5112b270a45c6091c30045e (diff)
downloadcpython-523d4f942c108db6fcd94a26d1cfd1d579d49426.zip
cpython-523d4f942c108db6fcd94a26d1cfd1d579d49426.tar.gz
cpython-523d4f942c108db6fcd94a26d1cfd1d579d49426.tar.bz2
Fix the sqlite failure -- it was the usual, PyInt_Check -> PyInt_CheckExact.
Clarify some OverflowError messages from the various PyLong_AsXXX methods.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS6
1 files changed, 3 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 830a66a..0f19539 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,9 +36,9 @@ TO DO
Core and Builtins
-----------------
-- Int/Long unification is halfway complete. There are a few broken tests,
- the 'long' built-in hasn't been removed yet, and literals with trailing
- 'L' or 'l' are still recognized. Performance may be sub-optimal.
+- Int/Long unification is halfway complete. The 'long' built-in type
+ hasn't been removed yet, and literals with trailing 'L' or 'l' are
+ still recognized. Performance may be sub-optimal.
- 'except E, V' must now be spelled as 'except E as V' and deletes V
at the end of the except clause; V must be a simple name.