From 2aa17aeefd324f0a0a1fb3b07c4e04bf61cc768d Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 15 Mar 2006 04:41:44 +0000 Subject: [PATCH] Add note about int as abstract base class. --- pep-3000.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/pep-3000.txt b/pep-3000.txt index fc9e70abe..e803ed1c7 100644 --- a/pep-3000.txt +++ b/pep-3000.txt @@ -109,6 +109,7 @@ Atomic Types ============ * Remove distinction between int and long types [1]_ + (int may become an abstract base type, with short and long subtypes.) * Make all strings be Unicode, and have a separate bytes() type [1]_ * Return iterators instead of lists where appropriate for atomic type methods (e.g. ``dict.keys()``, ``dict.values()``, ``dict.items()``, etc.); iter*