1. 15 Mar, 2009 3 commits
  2. 14 Mar, 2009 3 commits
    • Eric Smith's avatar
      Blocked revisions 70368 via svnmerge · 22b13319
      Eric Smith authored
      ........
        r70368 | eric.smith | 2009-03-14 10:37:38 -0400 (Sat, 14 Mar 2009) | 1 line
      
        Unicode format tests weren't actually testing unicode. This was probably due to the original backport from py3k.
      ........
      22b13319
    • Eric Smith's avatar
      Merged revisions 70364 via svnmerge from · 8ec90443
      Eric Smith authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r70364 | eric.smith | 2009-03-14 07:57:26 -0400 (Sat, 14 Mar 2009) | 17 lines
      
        Issue 5237, Allow auto-numbered replacement fields in str.format() strings.
      
        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.
      ........
      8ec90443
    • Antoine Pitrou's avatar
      Merged revisions 70356 via svnmerge from · 350370c2
      Antoine Pitrou authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r70356 | antoine.pitrou | 2009-03-14 01:07:21 +0100 (sam., 14 mars 2009) | 3 lines
      
        Issue #1222: locale.format() bug when the thousands separator is a space character.
      ........
      350370c2
  3. 13 Mar, 2009 4 commits
  4. 12 Mar, 2009 7 commits
  5. 11 Mar, 2009 3 commits
  6. 10 Mar, 2009 6 commits
  7. 09 Mar, 2009 14 commits
    • Benjamin Peterson's avatar
      fix versionchanged · 10745a98
      Benjamin Peterson authored
      10745a98
    • Benjamin Peterson's avatar
      Merged revisions... · e0124bd9
      Benjamin Peterson authored
      Merged revisions 69998-69999,70002,70022-70023,70025-70026,70061,70086,70145,70171,70183,70188,70235,70244,70275,70281 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r69998 | benjamin.peterson | 2009-02-26 13:04:40 -0600 (Thu, 26 Feb 2009) | 1 line
      
        the startship is rather outdated now
      ........
        r69999 | benjamin.peterson | 2009-02-26 13:05:59 -0600 (Thu, 26 Feb 2009) | 1 line
      
        comma
      ........
        r70002 | andrew.kuchling | 2009-02-26 16:34:30 -0600 (Thu, 26 Feb 2009) | 1 line
      
        The curses panel library is now supported
      ........
        r70022 | georg.brandl | 2009-02-27 10:23:18 -0600 (Fri, 27 Feb 2009) | 1 line
      
        #5361: fix typo.
      ........
        r70023 | georg.brandl | 2009-02-27 10:39:26 -0600 (Fri, 27 Feb 2009) | 1 line
      
        #5363: fix cmpfiles() docs. Another instance where a prose description is twice as long as the code.
      ........
        r70025 | georg.brandl | 2009-02-27 10:52:55 -0600 (Fri, 27 Feb 2009) | 1 line
      
        #5344: fix punctuation.
      ........
        r70026 | georg.brandl | 2009-02-27 10:59:03 -0600 (Fri, 27 Feb 2009) | 1 line
      
        #5365: add quick look conversion table for different time representations.
      ........
        r70061 | hirokazu.yamamoto | 2009-02-28 09:24:00 -0600 (Sat, 28 Feb 2009) | 1 line
      
        Binary flag is needed on windows.
      ........
        r70086 | benjamin.peterson | 2009-03-01 21:35:12 -0600 (Sun, 01 Mar 2009) | 1 line
      
        fix a silly problem of caching gone wrong #5401
      ........
        r70145 | benjamin.peterson | 2009-03-03 16:51:57 -0600 (Tue, 03 Mar 2009) | 1 line
      
        making the writing more formal
      ........
        r70171 | facundo.batista | 2009-03-04 15:18:17 -0600 (Wed, 04 Mar 2009) | 3 lines
      
        Fixed a typo.
      ........
        r70183 | benjamin.peterson | 2009-03-04 18:17:57 -0600 (Wed, 04 Mar 2009) | 1 line
      
        add example
      ........
        r70188 | hirokazu.yamamoto | 2009-03-05 03:34:14 -0600 (Thu, 05 Mar 2009) | 1 line
      
        Fixed memory leak on failure.
      ........
        r70235 | benjamin.peterson | 2009-03-07 18:21:17 -0600 (Sat, 07 Mar 2009) | 1 line
      
        fix funky indentation
      ........
        r70244 | martin.v.loewis | 2009-03-08 09:06:19 -0500 (Sun, 08 Mar 2009) | 2 lines
      
        Add Chris Withers.
      ........
        r70275 | georg.brandl | 2009-03-09 11:35:48 -0500 (Mon, 09 Mar 2009) | 2 lines
      
        Add missing space.
      ........
        r70281 | benjamin.peterson | 2009-03-09 15:38:56 -0500 (Mon, 09 Mar 2009) | 1 line
      
        gzip and bz2 are context managers
      ........
      e0124bd9
    • Benjamin Peterson's avatar
      Blocked revisions 70261,70267,70271,70273 via svnmerge · 07c0a757
      Benjamin Peterson authored
      ........
        r70261 | raymond.hettinger | 2009-03-09 06:31:39 -0500 (Mon, 09 Mar 2009) | 1 line
      
        Issue 5443: Fix typo.
      ........
        r70267 | raymond.hettinger | 2009-03-09 06:57:29 -0500 (Mon, 09 Mar 2009) | 1 line
      
        Add consume() recipe to itertools docs.
      ........
        r70271 | raymond.hettinger | 2009-03-09 07:56:23 -0500 (Mon, 09 Mar 2009) | 1 line
      
        Add cross-reference to the collections docs.
      ........
        r70273 | georg.brandl | 2009-03-09 09:25:07 -0500 (Mon, 09 Mar 2009) | 2 lines
      
        #5458: add a note when we started to raise RuntimeErrors.
      ........
      07c0a757
    • Brett Cannon's avatar
      Fix some reST mishaps. · 9c751b72
      Brett Cannon authored
      9c751b72
    • Raymond Hettinger's avatar
      1d7f4b28
    • Raymond Hettinger's avatar
      fa007965
    • Raymond Hettinger's avatar
      Issue 5443: Fix typo. · 5fa5d4fe
      Raymond Hettinger authored
      5fa5d4fe
    • Brett Cannon's avatar
    • Brett Cannon's avatar
      Clarify an assumption that importlib.abc.PyLoader makes when importing a · ad876c70
      Brett Cannon authored
      package and setting __path__.
      ad876c70
    • Brett Cannon's avatar
      Introduce importlib.abc. The module contains various ABCs related to imports · 2a922ed6
      Brett Cannon authored
      (mostly stuff specified by PEP 302). There are two ABCs, PyLoader and
      PyPycLoader, which help with implementing source and source/bytecode loaders by
      implementing load_module in terms of other methods. This removes a lot of
      gritty details loaders typically have to worry about.
      2a922ed6
    • Benjamin Peterson's avatar
      fix StringIO constructor docs #5452 · aa1c8d88
      Benjamin Peterson authored
      aa1c8d88
    • Brett Cannon's avatar
      Remove a dead XXX comment. · ba3fcf17
      Brett Cannon authored
      ba3fcf17
    • Brett Cannon's avatar
      Fix importlib._bootstrap.PyPycLoader.load_module() to better handle · 29dff8aa
      Brett Cannon authored
      source/bytecode paths and what to do when they don't exist.
      29dff8aa
    • Benjamin Peterson's avatar
      9fd459a3