[Python-checkins] r87977 - peps/trunk/pep-0008.txt

raymond.hettinger python-checkins at python.org
Thu Jan 13 00:22:08 CET 2011


Author: raymond.hettinger
Date: Thu Jan 13 00:22:08 2011
New Revision: 87977

Log:
Issue #10899: Function annotations being kept out of the standard library.


Modified:
   peps/trunk/pep-0008.txt

Modified: peps/trunk/pep-0008.txt
==============================================================================
--- peps/trunk/pep-0008.txt	(original)
+++ peps/trunk/pep-0008.txt	Thu Jan 13 00:22:08 2011
@@ -790,6 +790,12 @@
 
         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
 


More information about the Python-checkins mailing list