1. 07 Eyl, 2016 1 kayıt (commit)
  2. 17 Mar, 2016 1 kayıt (commit)
  3. 12 Agu, 2015 1 kayıt (commit)
  4. 06 May, 2015 1 kayıt (commit)
  5. 03 May, 2015 1 kayıt (commit)
  6. 22 Nis, 2015 1 kayıt (commit)
  7. 13 Nis, 2015 1 kayıt (commit)
    • Brett Cannon's avatar
      Issue #23731: Implement PEP 488. · f299abda
      Brett Cannon yazdı
      The concept of .pyo files no longer exists. Now .pyc files have an
      optional `opt-` tag which specifies if any extra optimizations beyond
      the peepholer were applied.
      f299abda
  8. 13 Eki, 2014 1 kayıt (commit)
  9. 05 Eki, 2014 1 kayıt (commit)
  10. 07 Tem, 2014 1 kayıt (commit)
  11. 22 Kas, 2013 1 kayıt (commit)
  12. 08 Kas, 2013 1 kayıt (commit)
  13. 12 Eki, 2013 1 kayıt (commit)
  14. 06 Eki, 2013 1 kayıt (commit)
  15. 29 Eyl, 2013 1 kayıt (commit)
  16. 26 Agu, 2013 1 kayıt (commit)
  17. 23 Agu, 2013 1 kayıt (commit)
  18. 12 Tem, 2013 1 kayıt (commit)
  19. 06 Tem, 2013 1 kayıt (commit)
    • Brett Cannon's avatar
      Issue #18351: Fix various issues with · a53cca3f
      Brett Cannon yazdı
      importlib._bootstrap._get_sourcefile().
      
      Thanks to its only use by the C API, it was never properly tested
      until now.
      
      Thanks to Neal Norwitz for discovering the bug and Madison May for the patch.
      a53cca3f
  20. 04 Tem, 2013 2 kayıt (commit)
  21. 16 Haz, 2013 1 kayıt (commit)
  22. 15 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. 07 Haz, 2013 1 kayıt (commit)
  25. 29 Nis, 2013 1 kayıt (commit)
  26. 15 Nis, 2013 1 kayıt (commit)
  27. 16 Mar, 2013 2 kayıt (commit)
  28. 24 Ara, 2012 1 kayıt (commit)
  29. 19 Eki, 2012 8 kayıt (commit)
  30. 25 Eyl, 2012 1 kayıt (commit)
  31. 31 Agu, 2012 1 kayıt (commit)