1. 08 Nis, 2016 1 kayıt (commit)
  2. 14 Mar, 2016 1 kayıt (commit)
  3. 11 Şub, 2016 1 kayıt (commit)
  4. 04 May, 2015 1 kayıt (commit)
  5. 03 May, 2015 1 kayıt (commit)
  6. 02 Şub, 2015 1 kayıt (commit)
  7. 06 Eyl, 2014 1 kayıt (commit)
  8. 12 Haz, 2014 1 kayıt (commit)
  9. 15 Nis, 2014 1 kayıt (commit)
  10. 27 Mar, 2014 2 kayıt (commit)
  11. 11 Ara, 2013 1 kayıt (commit)
  12. 08 Ara, 2013 1 kayıt (commit)
  13. 27 Eki, 2013 1 kayıt (commit)
  14. 23 Eki, 2013 1 kayıt (commit)
  15. 17 Eki, 2013 2 kayıt (commit)
  16. 13 Eki, 2013 1 kayıt (commit)
  17. 12 Eki, 2013 2 kayıt (commit)
  18. 11 Eki, 2013 3 kayıt (commit)
  19. 14 Eyl, 2013 1 kayıt (commit)
  20. 07 Eyl, 2013 1 kayıt (commit)
  21. 04 Tem, 2013 1 kayıt (commit)
  22. 13 Haz, 2013 1 kayıt (commit)
  23. 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
  24. 18 Kas, 2012 1 kayıt (commit)
  25. 05 Eki, 2012 1 kayıt (commit)
  26. 04 Nis, 2012 1 kayıt (commit)
  27. 05 Şub, 2012 2 kayıt (commit)
  28. 31 Eki, 2011 2 kayıt (commit)
  29. 03 Ock, 2011 3 kayıt (commit)
  30. 27 Ara, 2010 2 kayıt (commit)