[Python-checkins] r54112 - peps/trunk/pep-3100.txt

david.goodger python-checkins at python.org
Sun Mar 4 07:05:43 CET 2007


Author: david.goodger
Date: Sun Mar  4 07:05:40 2007
New Revision: 54112

Modified:
   peps/trunk/pep-3100.txt
Log:
fixed indentation errors

Modified: peps/trunk/pep-3100.txt
==============================================================================
--- peps/trunk/pep-3100.txt	(original)
+++ peps/trunk/pep-3100.txt	Sun Mar  4 07:05:40 2007
@@ -143,19 +143,19 @@
   literals with 'L' or 'l' suffix disappear [1]_ [done]
 * Make all strings be Unicode, and have a separate bytes() type [1]_
   The new string type will be called 'str'.
-* Return iterable views instead of lists where appropriate for atomic type methods
-  (e.g. ``dict.keys()``, ``dict.values()``, ``dict.items()``, etc.); iter*
-  methods will be removed. [done]
+* Return iterable views instead of lists where appropriate for atomic
+  type methods (e.g. ``dict.keys()``, ``dict.values()``,
+  ``dict.items()``, etc.); iter* methods will be removed. [done]
 * Make ``string.join()`` stringify its arguments? [18]_
 * Fix file() so it returns a ValueError if the mode is bad rather than IOError.
   (This probably affects lots of places, we should review the exceptions
-   and fix them if inappropriate.)
+  and fix them if inappropriate.)
 
 To be removed:
 
 * ``basestring.find()`` and ``basestring.rfind()``; use ``basestring.index()``
-   or ``basestring.[r]partition()`` or
-   or ``basestring.rindex()`` in a try/except block??? [13]_
+  or ``basestring.[r]partition()`` or
+  or ``basestring.rindex()`` in a try/except block??? [13]_
 * ``file.xreadlines()`` method [#file-object]_ [done]
 * ``dict.setdefault()``? [15]_
 * ``dict.has_key()`` method [done]


More information about the Python-checkins mailing list