1. 07 Eki, 2015 1 kayıt (commit)
  2. 21 Haz, 2015 1 kayıt (commit)
  3. 31 Ock, 2015 1 kayıt (commit)
  4. 12 Ara, 2014 1 kayıt (commit)
  5. 17 Haz, 2014 1 kayıt (commit)
  6. 14 Nis, 2014 1 kayıt (commit)
  7. 09 Şub, 2014 1 kayıt (commit)
  8. 13 Ara, 2013 1 kayıt (commit)
  9. 23 Kas, 2013 1 kayıt (commit)
  10. 21 Kas, 2013 1 kayıt (commit)
  11. 06 Kas, 2013 1 kayıt (commit)
  12. 30 Eki, 2013 1 kayıt (commit)
  13. 29 Eki, 2013 1 kayıt (commit)
  14. 09 Eki, 2013 1 kayıt (commit)
  15. 07 Eki, 2013 1 kayıt (commit)
  16. 13 Agu, 2013 1 kayıt (commit)
  17. 05 Agu, 2013 1 kayıt (commit)
  18. 20 Tem, 2013 1 kayıt (commit)
  19. 17 Tem, 2013 1 kayıt (commit)
    • Victor Stinner's avatar
      Issue #18408: PyEval_EvalFrameEx() and PyEval_CallObjectWithKeywords() now fail · ace47d7e
      Victor Stinner yazdı
      with an assertion error if they are called with an exception set
      (PyErr_Occurred()).
      
      If these functions are called with an exception set, the exception may be
      cleared and so the caller looses its exception.
      
      Add also assertions to PyEval_CallObjectWithKeywords() and call_function() to
      check if the function succeed with no exception set, or the function failed
      with an exception set.
      ace47d7e
  20. 15 Tem, 2013 2 kayıt (commit)
  21. 12 Tem, 2013 1 kayıt (commit)
  22. 11 Tem, 2013 1 kayıt (commit)
  23. 10 Tem, 2013 1 kayıt (commit)
  24. 08 Tem, 2013 1 kayıt (commit)
  25. 04 Tem, 2013 1 kayıt (commit)
  26. 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
  27. 16 May, 2013 2 kayıt (commit)
  28. 15 May, 2013 1 kayıt (commit)
  29. 12 May, 2013 1 kayıt (commit)
  30. 10 May, 2013 1 kayıt (commit)
  31. 05 May, 2013 1 kayıt (commit)
  32. 30 Nis, 2013 1 kayıt (commit)
  33. 19 Nis, 2013 1 kayıt (commit)
  34. 03 Mar, 2013 1 kayıt (commit)
  35. 10 Şub, 2013 1 kayıt (commit)
  36. 23 Ock, 2013 1 kayıt (commit)
  37. 24 Ara, 2012 1 kayıt (commit)
  38. 15 Ara, 2012 1 kayıt (commit)