1. 27 Agu, 2013 1 kayıt (commit)
  2. 25 Eki, 2012 1 kayıt (commit)
  3. 13 Mar, 2012 1 kayıt (commit)
  4. 22 Ock, 2012 1 kayıt (commit)
  5. 28 Eyl, 2011 1 kayıt (commit)
  6. 25 Eyl, 2011 1 kayıt (commit)
  7. 09 May, 2011 3 kayıt (commit)
  8. 08 May, 2011 1 kayıt (commit)
  9. 14 Mar, 2011 1 kayıt (commit)
  10. 29 Eyl, 2010 1 kayıt (commit)
  11. 28 Eyl, 2010 1 kayıt (commit)
  12. 11 Tem, 2010 2 kayıt (commit)
  13. 08 Tem, 2010 1 kayıt (commit)
  14. 07 Tem, 2010 2 kayıt (commit)
  15. 02 Tem, 2010 3 kayıt (commit)
  16. 01 Tem, 2010 1 kayıt (commit)
  17. 25 Haz, 2010 4 kayıt (commit)
  18. 13 Haz, 2010 2 kayıt (commit)
  19. 15 May, 2010 1 kayıt (commit)
    • Mark Dickinson's avatar
      Issue #8692: Improve performance of math.factorial: · 4c8a9a2d
      Mark Dickinson yazdı
      (1) use a different algorithm that roughly halves the total number of
          multiplications required and results in more balanced multiplications
      (2) use a lookup table for small arguments
      (3) fast accumulation of products in C integer arithmetic rather than
          PyLong arithmetic when possible.
      
      Typical speedup, from unscientific testing on a 64-bit laptop, is 4.5x
      to 6.5x for arguments in the range 100 - 10000.
      
      Patch by Daniel Stutzbach; extensive reviews by Alexander Belopolsky.
      4c8a9a2d
  20. 09 May, 2010 4 kayıt (commit)
  21. 21 Mar, 2010 1 kayıt (commit)
    • Georg Brandl's avatar
      Merged revisions 75952-75953,75955,76105,76143,76223,76259,76326,76376-76377 via svnmerge from · 46d441e0
      Georg Brandl yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75952 | georg.brandl | 2009-10-29 21:38:32 +0100 (Do, 29 Okt 2009) | 1 line
      
        Use the correct function name in docstring.
      ........
        r75953 | georg.brandl | 2009-10-29 21:39:50 +0100 (Do, 29 Okt 2009) | 1 line
      
        Remove mention of the old -X command line switch.
      ........
        r75955 | georg.brandl | 2009-10-29 21:54:03 +0100 (Do, 29 Okt 2009) | 1 line
      
        Use a single style for all the docstrings in the math module.
      ........
        r76105 | georg.brandl | 2009-11-04 08:38:12 +0100 (Mi, 04 Nov 2009) | 1 line
      
        #7259: show correct equivalent for operator.i* operations in docstring; fix minor issues in operator docs.
      ........
        r76143 | georg.brandl | 2009-11-07 09:26:07 +0100 (Sa, 07 Nov 2009) | 1 line
      
        #7271: fix typo.
      ........
        r76223 | georg.brandl | 2009-11-12 09:29:46 +0100 (Do, 12 Nov 2009) | 1 line
      
        Give the profile module a module directive.
      ........
        r76259 | georg.brandl | 2009-11-14 12:50:51 +0100 (Sa, 14 Nov 2009) | 1 line
      
        Fix terminology.
      ........
        r76326 | georg.brandl | 2009-11-16 17:44:05 +0100 (Mo, 16 Nov 2009) | 1 line
      
        #7302: fix link.
      ........
        r76376 | georg.brandl | 2009-11-18 20:39:14 +0100 (Mi, 18 Nov 2009) | 1 line
      
        upcase Python
      ........
        r76377 | georg.brandl | 2009-11-18 21:05:15 +0100 (Mi, 18 Nov 2009) | 1 line
      
        Fix markup.
      ........
      46d441e0
  22. 03 Ock, 2010 2 kayıt (commit)
  23. 02 Ock, 2010 2 kayıt (commit)
    • Mark Dickinson's avatar
      Merged revisions 77234 via svnmerge from · 6ecd9e53
      Mark Dickinson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r77234 | mark.dickinson | 2010-01-02 14:45:40 +0000 (Sat, 02 Jan 2010) | 7 lines
      
        Refactor some longobject internals:  PyLong_AsDouble and _PyLong_AsScaledDouble
        (the latter renamed to _PyLong_Frexp) now use the same core code.  The
        exponent produced by _PyLong_Frexp now has type Py_ssize_t instead of the
        previously used int, and no longer needs scaling by PyLong_SHIFT.  This
        frees the math module from having to know anything about the PyLong
        implementation.  This closes issue #5576.
      ........
      6ecd9e53
    • Mark Dickinson's avatar
      Refactor some longobject internals: PyLong_AsDouble and _PyLong_AsScaledDouble · d3e32321
      Mark Dickinson yazdı
      (the latter renamed to _PyLong_Frexp) now use the same core code.  The
      exponent produced by _PyLong_Frexp now has type Py_ssize_t instead of the
      previously used int, and no longer needs scaling by PyLong_SHIFT.  This
      frees the math module from having to know anything about the PyLong
      implementation.  This closes issue #5576.
      d3e32321
  24. 21 Ara, 2009 2 kayıt (commit)