1. 01 Jan, 2011 3 commits
  2. 31 Dec, 2010 1 commit
  3. 30 Dec, 2010 2 commits
  4. 29 Dec, 2010 2 commits
  5. 28 Dec, 2010 4 commits
  6. 27 Dec, 2010 2 commits
  7. 26 Dec, 2010 4 commits
  8. 24 Dec, 2010 2 commits
    • R. David Murray's avatar
      Blocked revisions 87479 via svnmerge · 5fff1479
      R. David Murray authored
      ........
        r87479 | r.david.murray | 2010-12-24 17:36:49 -0500 (Fri, 24 Dec 2010) | 8 lines
      
        #1693546: don't add quotes around RFC 2231 encoded values.
      
        The RFC is bit hard to understand on this point, but the examples
        clearly show that parameter values that are encoded according
        to its charset/language rules don't have surrounding quotes, and
        the ABNF does not allow for quotes.  So when we produce such
        encoded values, we no longer add quotes.
      ........
      5fff1479
    • Alexander Belopolsky's avatar
      Merged revisions 87463 via svnmerge from · 5512f32d
      Alexander Belopolsky authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r87463 | alexander.belopolsky | 2010-12-23 19:24:11 -0500 (Thu, 23 Dec 2010) | 1 line
      
        Issue #9063: Corrected the tzinfo example.
      ........
      5512f32d
  9. 23 Dec, 2010 4 commits
  10. 22 Dec, 2010 1 commit
  11. 21 Dec, 2010 5 commits
  12. 20 Dec, 2010 2 commits
    • R. David Murray's avatar
      Blocked revisions 87411 via svnmerge · 08d3c1e7
      R. David Murray authored
      ........
        r87411 | r.david.murray | 2010-12-20 14:04:51 -0500 (Mon, 20 Dec 2010) | 2 lines
      
        Revert incorrect patch made at the wrong time.
      ........
      08d3c1e7
    • R. David Murray's avatar
      Blocked revisions 87408 via svnmerge · 2c2085bd
      R. David Murray authored
      ........
        r87408 | r.david.murray | 2010-12-20 13:08:59 -0500 (Mon, 20 Dec 2010) | 8 lines
      
        Make test_compileall more robust by using -S to keep sys.path minimized.
      
        Arfrever Taifersar Arahesis reported that test_compileall failed during Gentoo
        install because it was tyring to write .pyc files to a read-only system
        directory during test_no_args_compiles_path.  Having subprocess call python
        with -S should eliminate the system directories from the path.
      ........
      2c2085bd
  13. 18 Dec, 2010 7 commits
    • R. David Murray's avatar
      Merged revisions 87027 via svnmerge from · 63cd7b6f
      R. David Murray authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r87027 | gregory.p.smith | 2010-12-04 06:36:58 -0500 (Sat, 04 Dec 2010) | 3 lines
      
        issue10622: fix superflous scrollbar on the right side of <pre> boxes in the
        generated html docs.  visible in chrome, possibly other webkit browsers.
      ........
      63cd7b6f
    • R. David Murray's avatar
      Blocked revisions 87384 via svnmerge · af05f18a
      R. David Murray authored
      ........
        r87384 | r.david.murray | 2010-12-18 13:25:38 -0500 (Sat, 18 Dec 2010) | 12 lines
      
        #9286: Fix the rfc822 parser to preserve whitespace in address local part.
      
        Such addresses are not RFC compliant except under the 'obsolete syntax'
        rules, but before this fix the whitespace was dropped from the input,
        concatenating the pieces.  That breaks one of the principles of the
        email package, that of preserving the input as much as possible.
        It also denies the application program the opportunity to apply its
        own heuristics to interpretation of such non-compliant addresses.
      
        It is possible users of the email package were depending on the local
        part always being a single token, so this fix will not be backported.
      ........
      af05f18a
    • Antoine Pitrou's avatar
      Merged revisions 87373,87381 via svnmerge from · ff1bbba9
      Antoine Pitrou authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r87373 | senthil.kumaran | 2010-12-18 17:55:23 +0100 (sam., 18 déc. 2010) | 3 lines
      
        Fix Issue6791 - Limit the HTTP header readline with _MAXLENGTH. Patch by Antoine Pitrou
      ........
        r87381 | antoine.pitrou | 2010-12-18 18:59:18 +0100 (sam., 18 déc. 2010) | 3 lines
      
        NEWS entry for r87373
      ........
      ff1bbba9
    • Ezio Melotti's avatar
      Merged revisions 87377 via svnmerge from · a2eb94b1
      Ezio Melotti authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r87377 | ezio.melotti | 2010-12-18 18:31:58 +0100 (Sat, 18 Dec 2010) | 1 line
      
        Use lowercase true/false in assertTrue/assertFalse messages.
      ........
      a2eb94b1
    • R. David Murray's avatar
      Merged revisions 87374 via svnmerge from · 28b77ece
      R. David Murray authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r87374 | r.david.murray | 2010-12-18 12:19:10 -0500 (Sat, 18 Dec 2010) | 8 lines
      
        #10404: Use ctl-button-1 for context menus on OSX Idle.
      
        This provides access to the context menus where they previously could
        not be accessed due to the way OSX Tk binds buttons.  It also
        improves platform consistency.
      
        Patch by Ned Deily.
      ........
      28b77ece
    • Ezio Melotti's avatar
      Merged revisions 87368 via svnmerge from · 9d254f70
      Ezio Melotti authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r87368 | ezio.melotti | 2010-12-18 15:59:43 +0100 (Sat, 18 Dec 2010) | 1 line
      
        #5587: add a repr to dict_proxy objects.  Patch by David Stanek and Daniel Urban.
      ........
      9d254f70
    • R. David Murray's avatar
      Blocked revisions 87356 via svnmerge · c79cf042
      R. David Murray authored
      ........
        r87356 | r.david.murray | 2010-12-17 22:48:32 -0500 (Fri, 17 Dec 2010) | 11 lines
      
        #9907: call rl_initialize early when using editline on OSX
      
        editline rl_initialize apparently discards any mappings done before it
        is called, which makes tab revert to file completion instead of inserting
        a tab.  So now on OSX we call rl_initialize first if we are using
        readline, and then re-read the users .editrc (if any) afterward so they
        can still override our defaults.
      
        Patch by Ned Deily, modified by Ronald Oussoren.
      ........
      c79cf042
  14. 17 Dec, 2010 1 commit