1. 22 Mar, 2009 2 commits
  2. 21 Mar, 2009 1 commit
  3. 20 Mar, 2009 3 commits
  4. 19 Mar, 2009 7 commits
  5. 18 Mar, 2009 7 commits
  6. 17 Mar, 2009 4 commits
  7. 16 Mar, 2009 1 commit
  8. 15 Mar, 2009 13 commits
  9. 14 Mar, 2009 2 commits
    • Eric Smith's avatar
      Unicode format tests weren't actually testing unicode. This was probably due... · 2ace4cf8
      Eric Smith authored
      Unicode format tests weren't actually testing unicode. This was probably due to the original backport from py3k.
      2ace4cf8
    • Eric Smith's avatar
      Issue 5237, Allow auto-numbered replacement fields in str.format() strings. · 6f42edb6
      Eric Smith authored
      For simple uses for str.format(), this makes the typing easier. Hopfully this
      will help in the adoption of str.format().
      
      For example:
      'The {} is {}'.format('sky', 'blue')
      
      You can mix and matcth auto-numbering and named replacement fields:
      'The {} is {color}'.format('sky', color='blue')
      
      But you can't mix and match auto-numbering and specified numbering:
      'The {0} is {}'.format('sky', 'blue')
      ValueError: cannot switch from manual field specification to automatic field numbering
      
      Will port to 3.1.
      6f42edb6