1. 26 Eki, 2017 1 kayıt (commit)
  2. 22 Eki, 2017 1 kayıt (commit)
  3. 25 May, 2017 1 kayıt (commit)
  4. 27 Ara, 2016 1 kayıt (commit)
  5. 20 Kas, 2016 1 kayıt (commit)
  6. 21 Eki, 2016 1 kayıt (commit)
  7. 07 Eyl, 2016 2 kayıt (commit)
  8. 03 Tem, 2015 1 kayıt (commit)
  9. 12 May, 2015 1 kayıt (commit)
  10. 20 Kas, 2014 1 kayıt (commit)
  11. 08 Eki, 2014 1 kayıt (commit)
  12. 30 Eyl, 2014 1 kayıt (commit)
  13. 10 Şub, 2014 2 kayıt (commit)
  14. 03 Ock, 2014 1 kayıt (commit)
  15. 21 Ara, 2013 1 kayıt (commit)
  16. 13 Kas, 2013 1 kayıt (commit)
    • Nick Coghlan's avatar
      Close #17828: better handling of codec errors · 8b097b4e
      Nick Coghlan yazdı
      - output type errors now redirect users to the type-neutral
        convenience functions in the codecs module
      - stateless errors that occur during encoding and decoding
        will now be automatically wrapped in exceptions that give
        the name of the codec involved
      8b097b4e
  17. 07 Eki, 2013 1 kayıt (commit)
  18. 02 Eyl, 2013 1 kayıt (commit)
  19. 26 Agu, 2013 1 kayıt (commit)
  20. 04 Tem, 2013 2 kayıt (commit)
  21. 13 Haz, 2013 1 kayıt (commit)
    • Brett Cannon's avatar
      Issue #15767: Touch up ModuleNotFoundError usage by import. · 8f5ac510
      Brett Cannon yazdı
      Forgot to raise ModuleNotFoundError when None is found in sys.modules.
      This led to introducing the C function PyErr_SetImportErrorSubclass()
      to make setting ModuleNotFoundError easier.
      
      Also updated the reference docs to mention ModuleNotFoundError
      appropriately. Updated the docs for ModuleNotFoundError to mention the
      None in sys.modules case.
      
      Lastly, it was noticed that PyErr_SetImportError() was not setting an
      exception when returning None in one case. That issue is now fixed.
      8f5ac510
  22. 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
  23. 09 Agu, 2012 1 kayıt (commit)
  24. 17 Haz, 2012 1 kayıt (commit)
  25. 04 Haz, 2012 1 kayıt (commit)
  26. 15 May, 2012 1 kayıt (commit)
  27. 19 Nis, 2012 1 kayıt (commit)
  28. 17 Nis, 2012 1 kayıt (commit)
  29. 13 Nis, 2012 2 kayıt (commit)
  30. 26 Şub, 2012 1 kayıt (commit)
  31. 13 Ock, 2012 1 kayıt (commit)
  32. 12 Eki, 2011 1 kayıt (commit)
  33. 28 Eyl, 2011 1 kayıt (commit)
  34. 21 Mar, 2011 1 kayıt (commit)
  35. 22 Şub, 2011 1 kayıt (commit)
  36. 28 Ara, 2010 1 kayıt (commit)