1. 02 Eki, 2010 1 kayıt (commit)
  2. 21 Agu, 2010 1 kayıt (commit)
  3. 17 Agu, 2010 1 kayıt (commit)
  4. 27 Ock, 2010 1 kayıt (commit)
  5. 24 Ock, 2010 1 kayıt (commit)
  6. 30 Haz, 2009 1 kayıt (commit)
  7. 26 Agu, 2008 1 kayıt (commit)
    • Antoine Pitrou's avatar
      Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to · 0668c626
      Antoine Pitrou yazdı
      match Python 2.5 speed despite the __instancecheck__ / __subclasscheck__
      mechanism. In the process, fix a bug where isinstance() and issubclass(),
      when given a tuple of classes as second argument, were looking up
      __instancecheck__ / __subclasscheck__ on the tuple rather than on each
      type object.
      
      Reviewed by Benjamin Peterson and Raymond Hettinger.
      0668c626
  8. 17 Mar, 2008 1 kayıt (commit)
  9. 03 Mar, 2008 1 kayıt (commit)
  10. 23 Şub, 2008 1 kayıt (commit)
  11. 13 Şub, 2008 1 kayıt (commit)
    • Jeffrey Yasskin's avatar
      Working on issue #1762: Brought · 57bd60b4
      Jeffrey Yasskin yazdı
        ./python.exe -m timeit -s 'from fractions import Fraction; f = Fraction(3, 2)' 'isinstance(3, Fraction); isinstance(f, Fraction)'
      from 12.3 usec/loop to 3.44 usec/loop and
        ./python.exe -m timeit -s 'from fractions import Fraction' 'Fraction(3, 2)'
      from 48.8 usec to 23.6 usec by avoiding genexps and sets in __instancecheck__
      and inlining the common case from __subclasscheck__.
      57bd60b4
  12. 07 Ock, 2008 1 kayıt (commit)
  13. 22 Kas, 2007 1 kayıt (commit)
  14. 10 Eyl, 2007 1 kayıt (commit)