1. 25 Apr, 2009 2 commits
  2. 24 Apr, 2009 5 commits
    • Thomas Heller's avatar
      Merged revisions 71847 via svnmerge from · 50101def
      Thomas Heller authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r71847 | thomas.heller | 2009-04-24 22:00:41 +0200 (Fr, 24 Apr 2009) | 2 lines
      
        Issue 5041: ctypes unwilling to allow pickling wide character.
      ........
      50101def
    • Mark Dickinson's avatar
      Blocked revisions 71837-71838 via svnmerge · 526ca87c
      Mark Dickinson authored
      ........
        r71837 | mark.dickinson | 2009-04-24 17:34:14 +0100 (Fri, 24 Apr 2009) | 4 lines
      
        Issue #5593: Use more robust test for double-rounding in test_fsum.
        While we're at it, use new unittest.skipUnless decorator to
        implement skipping for that test.
      ........
        r71838 | mark.dickinson | 2009-04-24 17:37:22 +0100 (Fri, 24 Apr 2009) | 2 lines
      
        Remove unnecessary double negative
      ........
      526ca87c
    • Mark Dickinson's avatar
      Blocked revisions 71832 via svnmerge · ff12ef45
      Mark Dickinson authored
      ........
        r71832 | mark.dickinson | 2009-04-24 14:56:07 +0100 (Fri, 24 Apr 2009) | 3 lines
      
        Issue #5812: The two-argument form of the Fraction constructor
        now accepts arbitrary Rational instances.
      ........
      ff12ef45
    • Mark Dickinson's avatar
      Blocked revisions 71827 via svnmerge · d5ac3a79
      Mark Dickinson authored
      ........
        r71827 | mark.dickinson | 2009-04-24 14:14:07 +0100 (Fri, 24 Apr 2009) | 2 lines
      
        Fix missing 'return NULL'
      ........
      d5ac3a79
    • Mark Dickinson's avatar
      Blocked revisions 71824 via svnmerge · 1380861e
      Mark Dickinson authored
      ........
        r71824 | mark.dickinson | 2009-04-24 13:46:53 +0100 (Fri, 24 Apr 2009) | 7 lines
      
        Issue #5816:
         - simplify parsing and printing of complex numbers
         - make complex(repr(z)) round-tripping work for complex
           numbers involving nans, infs, or negative zeros
         - don't accept some of the stranger complex strings
           that were previously allowed---e.g., complex('1..1j')
      ........
      1380861e
  3. 22 Apr, 2009 5 commits
    • Mark Dickinson's avatar
      Blocked revisions 71808 via svnmerge · 5f614b1f
      Mark Dickinson authored
      ........
        r71808 | mark.dickinson | 2009-04-22 19:15:25 +0100 (Wed, 22 Apr 2009) | 2 lines
      
        Issue #5812: make Fraction('1e-6') valid.  Backport of r71806.
      ........
      5f614b1f
    • Nick Coghlan's avatar
      Blocked revisions 71799 via svnmerge · 1bedacbf
      Nick Coghlan authored
      ........
        r71799 | nick.coghlan | 2009-04-23 01:26:04 +1000 (Thu, 23 Apr 2009) | 1 line
      
        Issue 5354: Change API for import_fresh_module() to better support test_warnings use case (also fixes some bugs in the original implementation)
      ........
      1bedacbf
    • Eric Smith's avatar
      Blocked revisions 71796 via svnmerge · 6da6317c
      Eric Smith authored
      ........
        r71796 | eric.smith | 2009-04-22 09:29:05 -0400 (Wed, 22 Apr 2009) | 20 lines
      
        Backport of some of the work in r71665 to trunk. This reworks much of
        int, long, and float __format__(), and it keeps their implementation
        in sync with py3k.
      
        Also added PyOS_double_to_string. This is the "fallback" version
        that's also available in trunk, and should be kept in sync with that
        code. I'll add an issue to document PyOS_double_to_string in the C
        API.
      
        There are many internal cleanups. Externally visible changes include:
      
        - Implement PEP 378, Format Specifier for Thousands Separator, for
          floats, ints, and longs.
      
        - Issue #5515: 'n' formatting for ints, longs, and floats handles
          leading zero formatting poorly.
      
        - Issue #5772: For float.__format__, don't add a trailing ".0" if
          we're using no type code and we have an exponent.
      ........
      6da6317c
    • Vinay Sajip's avatar
      ae7c4a0a
    • Eric Smith's avatar
      Blocked revisions 71788 via svnmerge · 6b678463
      Eric Smith authored
      ........
        r71788 | eric.smith | 2009-04-21 20:47:00 -0400 (Tue, 21 Apr 2009) | 1 line
      
        Documentation for issue 5237, auto-numbered format fields. Contributed by Terry J. Reedy.
      ........
      6b678463
  4. 20 Apr, 2009 7 commits
  5. 19 Apr, 2009 2 commits
  6. 18 Apr, 2009 5 commits
  7. 17 Apr, 2009 2 commits
  8. 16 Apr, 2009 6 commits
  9. 15 Apr, 2009 4 commits
    • R. David Murray's avatar
      Merged revisions 70873,70904,70934,71490,71553,71579 via svnmerge from · 7cd8f2be
      R. David Murray authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r70873 | josiah.carlson | 2009-03-31 15:32:34 -0400 (Tue, 31 Mar 2009) | 2 lines
      
        This resolves issue 1161031.  Tests pass.
      ........
        r70904 | josiah.carlson | 2009-03-31 17:49:36 -0400 (Tue, 31 Mar 2009) | 3 lines
      
        Made handle_expt_event() be called last, so that we don't accidentally read
        after closing the socket.
      ........
        r70934 | josiah.carlson | 2009-03-31 21:28:11 -0400 (Tue, 31 Mar 2009) | 2 lines
      
        Fix for failing asyncore tests.
      ........
        r71490 | r.david.murray | 2009-04-11 13:52:56 -0400 (Sat, 11 Apr 2009) | 4 lines
      
        Make test_asyncore tests match code changes introduced by the
        fix to Issue1161031, refactoring the test to simplify it in
        the process.
      ........
        r71553 | r.david.murray | 2009-04-12 21:06:46 -0400 (Sun, 12 Apr 2009) | 3 lines
      
        Adjust test_asyncore to account for intentional asyncore behavior change
        introduced by r70934 that was causing a test failure when run under -O.
      ........
        r71579 | r.david.murray | 2009-04-13 12:56:32 -0400 (Mon, 13 Apr 2009) | 2 lines
      
        Add missing NEWS item for issue1161031 fix.
      ........
      7cd8f2be
    • R. David Murray's avatar
      Merged revisions 71631 via svnmerge from · 0ec63513
      R. David Murray authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r71631 | r.david.murray | 2009-04-15 18:33:07 -0400 (Wed, 15 Apr 2009) | 4 lines
      
        Fix for issue3440: add warning to subprocess discussion of
        env parameter that on Windows SystemRoot is required in order
        to run side-by-side assemblies.
      ........
      0ec63513
    • Benjamin Peterson's avatar
      Merged revisions 71627 via svnmerge from · c843a476
      Benjamin Peterson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r71627 | benjamin.peterson | 2009-04-15 16:26:36 -0500 (Wed, 15 Apr 2009) | 4 lines
      
        call __float__ on str subclasses #5759
      
        tests by R. David Murray
      ........
      c843a476
    • Georg Brandl's avatar
  10. 14 Apr, 2009 2 commits