From f554d12d6fad942bf12582369874b87b5b92a455 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sat, 22 Apr 2006 21:21:18 +0000 Subject: [PATCH] Mention how func_whatever is to be renamed __whatever__ --- pep-3100.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pep-3100.txt b/pep-3100.txt index cd7f70ce7..c7745e7ce 100644 --- a/pep-3100.txt +++ b/pep-3100.txt @@ -92,6 +92,8 @@ Core language * __builtins__ should get a different name *or* completely unified with __builtin__. Keeping both with confusingly similar spellings and semantics is evil. +* Attributes on functions of the form ``func_whatever`` will be renamed + ``__whatever__`` [25]_ To be removed: @@ -288,6 +290,9 @@ References .. [24] python-3000 email http://mail.python.org/pipermail/python-3000/2006-April/000996.html +.. [25] python-3000 email ("Pronouncement on parameter lists") + http://mail.python.org/pipermail/python-3000/2006-April/001175.html + .. [#pep238] PEP 238 (Changing the Division Operator) http://www.python.org/dev/peps/pep-0238