1. 17 Eyl, 2014 1 kayıt (commit)
  2. 10 Tem, 2014 1 kayıt (commit)
  3. 20 Haz, 2014 2 kayıt (commit)
  4. 08 Haz, 2014 1 kayıt (commit)
  5. 07 Haz, 2014 1 kayıt (commit)
  6. 17 Eyl, 2014 1 kayıt (commit)
  7. 22 Şub, 2014 1 kayıt (commit)
  8. 21 Şub, 2014 1 kayıt (commit)
  9. 19 Şub, 2014 1 kayıt (commit)
  10. 22 Şub, 2014 1 kayıt (commit)
  11. 21 Şub, 2014 1 kayıt (commit)
  12. 18 Ock, 2014 1 kayıt (commit)
  13. 16 Ock, 2014 1 kayıt (commit)
  14. 07 Ock, 2014 1 kayıt (commit)
  15. 05 Ock, 2014 3 kayıt (commit)
  16. 05 Kas, 2013 1 kayıt (commit)
  17. 22 Eki, 2013 1 kayıt (commit)
  18. 21 Eki, 2013 2 kayıt (commit)
  19. 04 Tem, 2013 1 kayıt (commit)
  20. 12 Haz, 2013 1 kayıt (commit)
    • Brett Cannon's avatar
      Issue #15767: Introduce ModuleNotFoundError, a subclass of · b1611e27
      Brett Cannon yazdı
      ImportError.
      
      The exception is raised by import when a module could not be found.
      Technically this is defined as no viable loader could be found for the
      specified module. This includes ``from ... import`` statements so that
      the module usage is consistent for all situations where import
      couldn't find what was requested.
      
      This should allow for the common idiom of::
      
        try:
          import something
        except ImportError:
          pass
      
      to be updated to using ModuleNotFoundError and not accidentally mask
      ImportError messages that should propagate (e.g. issues with a
      loader).
      
      This work was driven by the fact that the ``from ... import``
      statement needed to be able to tell the difference between an
      ImportError that simply couldn't find a module (and thus silence the
      exception so that ceval can raise it) and an ImportError that
      represented an actual problem.
      b1611e27
  21. 19 May, 2013 1 kayıt (commit)
  22. 04 May, 2013 1 kayıt (commit)
  23. 19 Mar, 2013 3 kayıt (commit)
    • R David Murray's avatar
      Merge: #17476: make allmethods actually return all methods. · ac0cea5f
      R David Murray yazdı
      This fixes a regression relative to Python2.  (In 2, methods on a class were
      unbound methods and matched the inspect queries being done, in 3 they are just
      functions and so were missed).
      
      This is an undocumented function that pydoc itself does not use, but
      I found that numpy at least uses it in its documentation generator.
      
      Original patch by Matt Bachmann.
      ac0cea5f
    • R David Murray's avatar
      #17476: make allmethods actually return all methods. · 9929bc54
      R David Murray yazdı
      This fixes a regression relative to Python2.  (In 2, methods on a class were
      unbound methods and matched the inspect queries being done, in 3 they are just
      functions and so were missed).
      
      This is an undocumented function that pydoc itself does not use, but
      I found that numpy at least uses it in its documentation generator.
      
      Original patch by Matt Bachmann.
      9929bc54
    • R David Murray's avatar
      #17464: improve pydoc test coverage. · 455f2961
      R David Murray yazdı
      Patch by Matt Bachmann.
      455f2961
  24. 27 Ock, 2013 2 kayıt (commit)
  25. 26 Ock, 2013 1 kayıt (commit)
  26. 23 Nis, 2012 2 kayıt (commit)
  27. 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
  28. 03 Şub, 2012 2 kayıt (commit)
  29. 06 Eki, 2011 2 kayıt (commit)
  30. 28 Eyl, 2011 1 kayıt (commit)