1. 12 Haz, 2014 1 kayıt (commit)
  2. 31 May, 2014 1 kayıt (commit)
  3. 30 Mar, 2014 1 kayıt (commit)
  4. 28 Ock, 2014 1 kayıt (commit)
  5. 25 Eki, 2013 1 kayıt (commit)
  6. 11 Eki, 2013 3 kayıt (commit)
  7. 29 Eyl, 2013 1 kayıt (commit)
  8. 14 Eyl, 2013 1 kayıt (commit)
  9. 07 Eyl, 2013 2 kayıt (commit)
  10. 06 Eyl, 2013 1 kayıt (commit)
  11. 06 Agu, 2013 1 kayıt (commit)
  12. 01 Agu, 2013 1 kayıt (commit)
  13. 31 Tem, 2013 1 kayıt (commit)
  14. 04 Tem, 2013 1 kayıt (commit)
  15. 14 Haz, 2013 1 kayıt (commit)
  16. 06 May, 2013 1 kayıt (commit)
  17. 04 May, 2013 1 kayıt (commit)
  18. 14 Nis, 2013 1 kayıt (commit)
    • Meador Inge's avatar
      Issue #16804: Fix 'python -S -m site' failure. · 9a7a8119
      Meador Inge yazdı
      This commit fixes a bug in the 'site' module that was causing an exception
      to incorrectly be thrown when running 'python -S -m site'.  The problem was
      that 'USER_BASE' and 'USER_SITE' were being accessed before they were properly
      initialized.  The code has been changed to use 'getuserbase' and
      'getusersitepackages' instead so that the initialization always happens.
      9a7a8119
  19. 12 Nis, 2013 1 kayıt (commit)
  20. 12 Şub, 2013 1 kayıt (commit)
  21. 25 Ock, 2013 1 kayıt (commit)
  22. 25 Ara, 2012 1 kayıt (commit)
  23. 18 Ara, 2012 1 kayıt (commit)
  24. 23 Kas, 2012 1 kayıt (commit)
  25. 18 Kas, 2012 1 kayıt (commit)
  26. 05 Eki, 2012 1 kayıt (commit)
  27. 03 Tem, 2012 1 kayıt (commit)
  28. 24 Haz, 2012 1 kayıt (commit)
  29. 26 May, 2012 1 kayıt (commit)
  30. 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
  31. 21 Şub, 2012 1 kayıt (commit)
  32. 05 Şub, 2012 1 kayıt (commit)
  33. 04 Kas, 2011 1 kayıt (commit)
  34. 04 May, 2011 1 kayıt (commit)
  35. 23 Mar, 2011 1 kayıt (commit)
  36. 26 Ara, 2010 2 kayıt (commit)
    • R. David Murray's avatar
      Merged revisions 87497 via svnmerge from · 5874ed6c
      R. David Murray yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r87497 | r.david.murray | 2010-12-26 14:54:29 -0500 (Sun, 26 Dec 2010) | 7 lines
      
        #5258/#10642: print fn, line, traceback and continue when .pth file is broken
      
        If a .pth file contained an error, it could cause a traceback in site.py,
        terminating its processing.  In 2.7 and 3.2, the interpreter will then not
        start.  Previously, a message would print saying to use -v to get the
        traceback.  In either case, the traceback generated for a failed .pth file did
        not include the .pth filename, making it difficult to debug the problem.  Now
        site.py reports not only the .pth filename but also the line number causing the
        error, and just skips the remainder of the file.
      ........
      5874ed6c
    • R. David Murray's avatar
      Merged revisions 87497 via svnmerge from · 6cb252fa
      R. David Murray yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r87497 | r.david.murray | 2010-12-26 14:54:29 -0500 (Sun, 26 Dec 2010) | 7 lines
      
        #5258/#10642: print fn, line, traceback and continue when .pth file is broken
      
        If a .pth file contained an error, it could cause a traceback in site.py,
        terminating its processing.  In 2.7 and 3.2, the interpreter will then not
        start.  Previously, a message would print saying to use -v to get the
        traceback.  In either case, the traceback generated for a failed .pth file did
        not include the .pth filename, making it difficult to debug the problem.  Now
        site.py reports not only the .pth filename but also the line number causing the
        error, and just skips the remainder of the file.
      ........
      6cb252fa