*** stdtypes.rst.orig Wed Apr 28 04:51:42 2010 --- stdtypes.rst Wed Apr 28 04:52:40 2010 *************** *** 1296,1303 **** dictionary inserted immediately after the ``'%'`` character. The mapping key selects the value to be formatted from the mapping. For example: ! >>> print '%(language)s has %(#)03d quote types.' % \ ! ... {'language': "Python", "#": 2} Python has 002 quote types. In this case no ``*`` specifiers may occur in a format (since they require a --- 1296,1303 ---- dictionary inserted immediately after the ``'%'`` character. The mapping key selects the value to be formatted from the mapping. For example: ! >>> print '%(language)s has %(quote_types)03d quote types.' % \ ! ... {'language': "Python", "quote_types": 2} Python has 002 quote types. In this case no ``*`` specifiers may occur in a format (since they require a