1. 12 Eyl, 2011 1 kayıt (commit)
  2. 07 Eyl, 2011 1 kayıt (commit)
  3. 11 Agu, 2011 1 kayıt (commit)
  4. 16 Mar, 2011 1 kayıt (commit)
  5. 15 Mar, 2011 1 kayıt (commit)
  6. 04 Ara, 2010 2 kayıt (commit)
  7. 30 Kas, 2010 1 kayıt (commit)
  8. 23 Eki, 2010 1 kayıt (commit)
  9. 17 Eki, 2010 1 kayıt (commit)
  10. 07 Haz, 2010 1 kayıt (commit)
  11. 26 May, 2010 2 kayıt (commit)
  12. 23 May, 2010 1 kayıt (commit)
  13. 10 May, 2010 2 kayıt (commit)
  14. 09 May, 2010 2 kayıt (commit)
  15. 08 May, 2010 1 kayıt (commit)
  16. 07 Nis, 2010 2 kayıt (commit)
  17. 06 Nis, 2010 3 kayıt (commit)
  18. 19 Mar, 2010 1 kayıt (commit)
  19. 13 Mar, 2010 1 kayıt (commit)
  20. 30 Ock, 2010 2 kayıt (commit)
  21. 09 Ock, 2010 2 kayıt (commit)
  22. 02 Ock, 2010 1 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
  23. 27 Ara, 2009 1 kayıt (commit)
  24. 21 Ara, 2009 1 kayıt (commit)
  25. 07 Ara, 2009 1 kayıt (commit)
  26. 10 Kas, 2009 1 kayıt (commit)
  27. 25 Eki, 2009 1 kayıt (commit)
  28. 28 Eyl, 2009 1 kayıt (commit)
    • Mark Dickinson's avatar
      Merged revisions 75110 via svnmerge from · 24f5785f
      Mark Dickinson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r75110 | mark.dickinson | 2009-09-28 17:52:40 +0100 (Mon, 28 Sep 2009) | 9 lines
      
        Style/consistency/nano-optimization nit:  replace occurrences of
          (high_bits << PyLong_SHIFT) + low_bits with
          (high_bits << PyLong_SHIFT) | low_bits
        in Objects/longobject.c.  Motivation:
         - shouldn't unnecessarily mix bit ops with arithmetic ops (style)
         - this pattern should be spelt the same way thoughout (consistency)
         - it's very very very slightly faster: no need to worry about
           carries to the high digit (nano-optimization).
      ........
      24f5785f
  29. 24 Eyl, 2009 1 kayıt (commit)
  30. 21 Eyl, 2009 1 kayıt (commit)
  31. 18 Eyl, 2009 1 kayıt (commit)