From 56dcd4ff1e1ee0ecd02c851528afb2593f7e0a35 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Wed, 12 Jan 2011 23:22:08 +0000 Subject: [PATCH] Issue #10899: Function annotations being kept out of the standard library. --- pep-0008.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pep-0008.txt b/pep-0008.txt index c39e037f6..b9a5a6adc 100644 --- a/pep-0008.txt +++ b/pep-0008.txt @@ -790,6 +790,12 @@ Programming Recommendations Worse: if greeting is True: +Rules that apply only to the standard library + + - Do not use function type annotations in the standard library. + These are reserved for users and third-party modules. See + PEP 3107 and the bug 10899 for details. + References