[Python-checkins] r57955 - peps/trunk/pep-3119.txt peps/trunk/pep-3141.txt

georg.brandl python-checkins at python.org
Tue Sep 4 10:21:25 CEST 2007


Author: georg.brandl
Date: Tue Sep  4 10:21:25 2007
New Revision: 57955

Modified:
   peps/trunk/pep-3119.txt
   peps/trunk/pep-3141.txt
Log:
Two very small fixes.


Modified: peps/trunk/pep-3119.txt
==============================================================================
--- peps/trunk/pep-3119.txt	(original)
+++ peps/trunk/pep-3119.txt	Tue Sep  4 10:21:25 2007
@@ -771,7 +771,7 @@
 from the appropriate base classes; these vary from default
 implementations for certain functionality to an improved ability to
 distinguish between mappings and sequences.  But there are no sticks.
-If ``hasattr(x, __len__)`` works for you, great!  ABCs are intended to
+If ``hasattr(x, "__len__")`` works for you, great!  ABCs are intended to
 solve problems that don't have a good solution at all in Python 2,
 such as distinguishing between mappings and sequences.
 

Modified: peps/trunk/pep-3141.txt
==============================================================================
--- peps/trunk/pep-3141.txt	(original)
+++ peps/trunk/pep-3141.txt	Tue Sep  4 10:21:25 2007
@@ -553,7 +553,7 @@
 Acknowledgements
 ================
 
-Thanks to Neil Norwitz for encouraging me to write this PEP in the
+Thanks to Neal Norwitz for encouraging me to write this PEP in the
 first place, to Travis Oliphant for pointing out that the numpy people
 didn't really care about the algebraic concepts, to Alan Isaac for
 reminding me that Scheme had already done this, and to Guido van


More information about the Python-checkins mailing list