1. 08 Nis, 2014 1 kayıt (commit)
  2. 03 Ock, 2014 1 kayıt (commit)
  3. 19 Eki, 2013 1 kayıt (commit)
  4. 27 Agu, 2013 1 kayıt (commit)
  5. 29 May, 2013 1 kayıt (commit)
  6. 02 May, 2013 1 kayıt (commit)
  7. 07 Eki, 2012 1 kayıt (commit)
  8. 06 Eki, 2012 1 kayıt (commit)
  9. 28 Tem, 2012 1 kayıt (commit)
  10. 14 Nis, 2012 1 kayıt (commit)
    • Brett Cannon's avatar
      Issue #2377: Make importlib the implementation of __import__(). · fd074155
      Brett Cannon yazdı
      importlib._bootstrap is now frozen into Python/importlib.h and stored
      as _frozen_importlib in sys.modules. Py_Initialize() loads the frozen
      code along with sys and imp and then uses _frozen_importlib._install()
      to set builtins.__import__() w/ _frozen_importlib.__import__().
      fd074155
  11. 21 Mar, 2012 1 kayıt (commit)
  12. 06 Mar, 2012 1 kayıt (commit)
  13. 25 Şub, 2012 1 kayıt (commit)
    • Stefan Krah's avatar
      - Issue #10181: New memoryview implementation fixes multiple ownership · 9a2d99e2
      Stefan Krah yazdı
        and lifetime issues of dynamically allocated Py_buffer members (#9990)
        as well as crashes (#8305, #7433). Many new features have been added
        (See whatsnew/3.3), and the documentation has been updated extensively.
        The ndarray test object from _testbuffer.c implements all aspects of
        PEP-3118, so further development towards the complete implementation
        of the PEP can proceed in a test-driven manner.
      
        Thanks to Nick Coghlan, Antoine Pitrou and Pauli Virtanen for review
        and many ideas.
      
      - Issue #12834: Fix incorrect results of memoryview.tobytes() for
        non-contiguous arrays.
      
      - Issue #5231: Introduce memoryview.cast() method that allows changing
        format and shape without making a copy of the underlying memory.
      9a2d99e2
  14. 09 Eki, 2011 1 kayıt (commit)
  15. 16 Mar, 2011 2 kayıt (commit)
  16. 06 Ock, 2011 1 kayıt (commit)
  17. 03 Ara, 2010 1 kayıt (commit)
  18. 01 Eyl, 2010 3 kayıt (commit)
  19. 09 May, 2010 4 kayıt (commit)
  20. 14 Mar, 2010 1 kayıt (commit)
  21. 13 Agu, 2009 1 kayıt (commit)
  22. 01 Tem, 2009 1 kayıt (commit)
  23. 26 May, 2009 1 kayıt (commit)
  24. 11 Şub, 2009 1 kayıt (commit)
  25. 02 Şub, 2009 3 kayıt (commit)
  26. 01 Şub, 2009 1 kayıt (commit)
  27. 12 Ock, 2009 2 kayıt (commit)
  28. 10 Ock, 2009 1 kayıt (commit)
  29. 26 Agu, 2008 2 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
    • Antoine Pitrou's avatar
      Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to · ec569b79
      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.
      ec569b79
  30. 13 Agu, 2008 1 kayıt (commit)