1. 24 Jan, 2010 4 commits
    • Mark Dickinson's avatar
      Blocked revisions 77691,77698,77713-77714 via svnmerge · 624570dc
      Mark Dickinson authored
      ........
        r77691 | mark.dickinson | 2010-01-22 16:18:09 +0000 (Fri, 22 Jan 2010) | 1 line
      
        Correct typo in comment.
      ........
        r77698 | mark.dickinson | 2010-01-22 17:04:07 +0000 (Fri, 22 Jan 2010) | 3 lines
      
        Issue #7743:  Fix a potential incorrect rounding bug in dtoa.c (2nd bug
        in issue 7743).
      ........
        r77713 | mark.dickinson | 2010-01-23 20:48:56 +0000 (Sat, 23 Jan 2010) | 3 lines
      
        Issue #7743:  Add checks for zero inputs to the lshift and mult functions;
        this fixes the first bug described in issue #7743.
      ........
        r77714 | mark.dickinson | 2010-01-23 21:25:53 +0000 (Sat, 23 Jan 2010) | 1 line
      
        dtoa.c fix from upstream that fixes incorrectly rounded results for certain subnormals that are also halfway cases.
      ........
      624570dc
    • Raymond Hettinger's avatar
      087209ac
    • Tarek Ziadé's avatar
      Merged revisions 77717 via svnmerge from · 80af8573
      Tarek Ziadé authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77717 | tarek.ziade | 2010-01-24 01:33:32 +0100 (Sun, 24 Jan 2010) | 1 line
      
        Fixed #7748: now upload and register commands don't need to force the encoding anymore : DistributionMetada returns utf8 strings
      ........
      80af8573
    • Tarek Ziadé's avatar
      Blocked revisions 77712 via svnmerge · b6439511
      Tarek Ziadé authored
      ........
        r77712 | tarek.ziade | 2010-01-23 18:52:57 +0100 (Sat, 23 Jan 2010) | 1 line
      
        fixed the 64bits tests for get_platform() - mac osx
      ........
      b6439511
  2. 23 Jan, 2010 2 commits
  3. 22 Jan, 2010 3 commits
  4. 21 Jan, 2010 3 commits
    • Ezio Melotti's avatar
      Merged revisions 77675 via svnmerge from · 0ebcca23
      Ezio Melotti authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77675 | ezio.melotti | 2010-01-21 22:50:57 +0200 (Thu, 21 Jan 2010) | 1 line
      
        #7746: rephrase a sentence
      ........
      0ebcca23
    • Mark Dickinson's avatar
      Blocked revisions 77672 via svnmerge · f0739f3e
      Mark Dickinson authored
      ........
        r77672 | mark.dickinson | 2010-01-21 19:58:41 +0000 (Thu, 21 Jan 2010) | 1 line
      
        Use // for floor division.
      ........
      f0739f3e
    • Mark Dickinson's avatar
      Blocked revisions 77614-77616,77663 via svnmerge · 48f6496c
      Mark Dickinson authored
      ........
        r77614 | mark.dickinson | 2010-01-20 17:36:31 +0000 (Wed, 20 Jan 2010) | 5 lines
      
        Various dtoa.c cleanups.  1. Despagghetify _Py_dg_strtod parsing code
        and exit points.  2. Simplify bigcomp comparison loop.  3. Don't set
        ERANGE on _Py_dg_strtod underflow (it was set inconsistently anyway).
        4. Remove unused dsign field from BCinfo struct.
      ........
        r77615 | mark.dickinson | 2010-01-20 18:02:41 +0000 (Wed, 20 Jan 2010) | 1 line
      
        Don't try to put a value into a NULL pointer.
      ........
        r77616 | mark.dickinson | 2010-01-20 21:23:25 +0000 (Wed, 20 Jan 2010) | 1 line
      
        Additional explanatory comments for _Py_dg_strtod.
      ........
        r77663 | mark.dickinson | 2010-01-21 17:02:53 +0000 (Thu, 21 Jan 2010) | 1 line
      
        Additional testcases for strtod.
      ........
      48f6496c
  5. 18 Jan, 2010 1 commit
  6. 17 Jan, 2010 5 commits
  7. 16 Jan, 2010 8 commits
  8. 15 Jan, 2010 2 commits
  9. 14 Jan, 2010 3 commits
    • Antoine Pitrou's avatar
      Merged revisions 77499 via svnmerge from · 27b64344
      Antoine Pitrou authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77499 | antoine.pitrou | 2010-01-14 18:25:24 +0100 (jeu., 14 janv. 2010) | 4 lines
      
        Issue #3299: Fix possible crash in the _sre module when given bad
        argument values in debug mode.  Patch by Victor Stinner.
      ........
      27b64344
    • Mark Dickinson's avatar
      Blocked revisions 77477-77478,77481-77483,77490-77493 via svnmerge · 54c09210
      Mark Dickinson authored
      ........
        r77477 | mark.dickinson | 2010-01-13 18:21:53 +0000 (Wed, 13 Jan 2010) | 1 line
      
        Add comments explaining the role of the bigcomp function in dtoa.c.
      ........
        r77478 | mark.dickinson | 2010-01-13 19:02:37 +0000 (Wed, 13 Jan 2010) | 1 line
      
        Clarify that sulp expects a nonnegative input, but that +0.0 is fine.
      ........
        r77481 | mark.dickinson | 2010-01-13 20:55:03 +0000 (Wed, 13 Jan 2010) | 1 line
      
        Simplify and annotate the bigcomp function, removing unused special cases.
      ........
        r77482 | mark.dickinson | 2010-01-13 22:15:53 +0000 (Wed, 13 Jan 2010) | 1 line
      
        Fix buggy comparison:  LHS of comparison was being treated as unsigned.
      ........
        r77483 | mark.dickinson | 2010-01-13 22:20:10 +0000 (Wed, 13 Jan 2010) | 1 line
      
        More dtoa.c cleanup;  remove the need for bc.dplen, bc.dp0 and bc.dp1.
      ........
        r77490 | mark.dickinson | 2010-01-14 13:02:36 +0000 (Thu, 14 Jan 2010) | 1 line
      
        Fix off-by-one error introduced in r77483.  I have a test for this, but it currently fails due to a different dtoa.c bug;  I'll add the test once that bug is fixed.
      ........
        r77491 | mark.dickinson | 2010-01-14 13:14:49 +0000 (Thu, 14 Jan 2010) | 1 line
      
        Issue 7632: fix a dtoa.c bug (bug 6) causing incorrect rounding.  Tests to follow.
      ........
        r77492 | mark.dickinson | 2010-01-14 14:40:20 +0000 (Thu, 14 Jan 2010) | 1 line
      
        Issue 7632:  fix incorrect rounding for long input strings with values very close to a power of 2.  (See Bug 4 in the tracker discussion.)
      ........
        r77493 | mark.dickinson | 2010-01-14 15:22:33 +0000 (Thu, 14 Jan 2010) | 1 line
      
        Issue #7632:  add tests for bugs fixed so far.
      ........
      54c09210
    • Ezio Melotti's avatar
      Merged revisions 77487 via svnmerge from · 9c94f55e
      Ezio Melotti authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77487 | ezio.melotti | 2010-01-14 13:34:10 +0200 (Thu, 14 Jan 2010) | 1 line
      
        Fixed typo
      ........
      9c94f55e
  10. 13 Jan, 2010 1 commit
  11. 12 Jan, 2010 5 commits
    • Mark Dickinson's avatar
      Blocked revisions 77410,77421,77450-77451 via svnmerge · 42ac4a12
      Mark Dickinson authored
      ........
        r77410 | mark.dickinson | 2010-01-10 13:06:31 +0000 (Sun, 10 Jan 2010) | 1 line
      
        Remove unused BCinfo fields and an unused macro.
      ........
        r77421 | mark.dickinson | 2010-01-11 17:15:13 +0000 (Mon, 11 Jan 2010) | 1 line
      
        Change a variable type to avoid signed overflow; replace repeated '19999' constant by a define.
      ........
        r77450 | mark.dickinson | 2010-01-12 22:23:56 +0000 (Tue, 12 Jan 2010) | 4 lines
      
        Issue #7632: Fix a problem with _Py_dg_strtod that could lead to
        crashes in debug builds, for certain long numeric strings
        corresponding to subnormal values.
      ........
        r77451 | mark.dickinson | 2010-01-12 22:55:51 +0000 (Tue, 12 Jan 2010) | 2 lines
      
        Issue #7632:  Fix a bug in dtoa.c that could lead to incorrectly-rounded results.
      ........
      42ac4a12
    • Alexandre Vassalotti's avatar
      Blocked revisions 77445 via svnmerge · a5a8a3c0
      Alexandre Vassalotti authored
      ........
        r77445 | alexandre.vassalotti | 2010-01-12 13:25:33 -0500 (Tue, 12 Jan 2010) | 2 lines
      
        Added documentation for dictionary views fixer.
      ........
      a5a8a3c0
    • Ezio Melotti's avatar
      Merged revisions 77442 via svnmerge from · b1f548cd
      Ezio Melotti authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77442 | ezio.melotti | 2010-01-12 05:32:05 +0200 (Tue, 12 Jan 2010) | 1 line
      
        #5827: make sure that normpath preserves unicode
      ........
      b1f548cd
    • Alexandre Vassalotti's avatar
      Blocked revisions 77438 via svnmerge · 1c0679ba
      Alexandre Vassalotti authored
      ........
        r77438 | alexandre.vassalotti | 2010-01-11 20:34:43 -0500 (Mon, 11 Jan 2010) | 2 lines
      
        Fixed repr of dictionary views.
      ........
      1c0679ba
    • R. David Murray's avatar
      Blocked revisions 77400,77422,77428 via svnmerge · 8d8b9549
      R. David Murray authored
      ........
        r77400 | alexandre.vassalotti | 2010-01-09 18:35:54 -0500 (Sat, 09 Jan 2010) | 2 lines
      
        Issue #2335: Backport set literals syntax from Python 3.x.
      ........
        r77422 | alexandre.vassalotti | 2010-01-11 17:36:12 -0500 (Mon, 11 Jan 2010) | 2 lines
      
        Issue #2333: Backport set and dict comprehensions syntax.
      ........
        r77428 | alexandre.vassalotti | 2010-01-11 18:17:10 -0500 (Mon, 11 Jan 2010) | 2 lines
      
        Issue #1967: Backport dictionary views.
      ........
      8d8b9549
  12. 11 Jan, 2010 2 commits
  13. 10 Jan, 2010 1 commit