From 188165449a4b3ca74d5f49ac60ed83c66003ba74 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 16 Jan 2007 00:43:39 +0000 Subject: [PATCH] Mark int/long unification as done. (Except maybe for speedups, but that's a separate project.) --- pep-3100.txt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pep-3100.txt b/pep-3100.txt index c1cb68432..ba61176f1 100644 --- a/pep-3100.txt +++ b/pep-3100.txt @@ -138,11 +138,8 @@ To be removed: Atomic Types ============ -* Remove distinction between int and long types [1]_ - [This is mostly done. There is a single 'int' type whose implementation - is that of the Python 2.x 'long'; the PyInt_XXX APIs have been mapped - to the corresponding PyLong_XXX APIs. Still to do: remove the 'long' - alias from __builtin__, and remove support for literals with trailing 'L'.] +* Remove distinction between int and long types; 'long' built-in type and + literals with 'L' or 'l' suffix disappear [1]_ [done] * Make all strings be Unicode, and have a separate bytes() type [1]_ The new string type will be called 'str'. * Return iterators instead of lists where appropriate for atomic type methods