1. 28 Ock, 2014 1 kayıt (commit)
  2. 25 Eki, 2013 1 kayıt (commit)
  3. 11 Eki, 2013 3 kayıt (commit)
  4. 29 Eyl, 2013 1 kayıt (commit)
  5. 14 Eyl, 2013 1 kayıt (commit)
  6. 07 Eyl, 2013 2 kayıt (commit)
  7. 06 Eyl, 2013 1 kayıt (commit)
  8. 06 Agu, 2013 1 kayıt (commit)
  9. 01 Agu, 2013 1 kayıt (commit)
  10. 31 Tem, 2013 1 kayıt (commit)
  11. 04 Tem, 2013 1 kayıt (commit)
  12. 14 Haz, 2013 1 kayıt (commit)
  13. 06 May, 2013 1 kayıt (commit)
  14. 04 May, 2013 1 kayıt (commit)
  15. 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
  16. 12 Nis, 2013 1 kayıt (commit)
  17. 12 Şub, 2013 1 kayıt (commit)
  18. 25 Ock, 2013 1 kayıt (commit)
  19. 25 Ara, 2012 1 kayıt (commit)
  20. 18 Ara, 2012 1 kayıt (commit)
  21. 23 Kas, 2012 1 kayıt (commit)
  22. 18 Kas, 2012 1 kayıt (commit)
  23. 05 Eki, 2012 1 kayıt (commit)
  24. 03 Tem, 2012 1 kayıt (commit)
  25. 24 Haz, 2012 1 kayıt (commit)
  26. 26 May, 2012 1 kayıt (commit)
  27. 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
  28. 21 Şub, 2012 1 kayıt (commit)
  29. 05 Şub, 2012 1 kayıt (commit)
  30. 04 Kas, 2011 1 kayıt (commit)
  31. 04 May, 2011 1 kayıt (commit)
  32. 23 Mar, 2011 1 kayıt (commit)
  33. 26 Ara, 2010 3 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
    • R. David Murray's avatar
      #5258/#10642: print fn, line, traceback and continue when .pth file is broken · b4ca59b7
      R. David Murray yazdı
      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.
      b4ca59b7
  34. 12 Eki, 2010 2 kayıt (commit)
    • Victor Stinner's avatar
      Merged revisions 85386-85387,85389 via svnmerge from · 93f5cd42
      Victor Stinner yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r85386 | victor.stinner | 2010-10-13 00:23:23 +0200 (mer., 13 oct. 2010) | 3 lines
      
        Issue #6612: Fix site and sysconfig to catch os.getcwd() error, eg. if the
        current directory was deleted.
      ........
        r85387 | victor.stinner | 2010-10-13 00:26:08 +0200 (mer., 13 oct. 2010) | 2 lines
      
        #6612: add the author of the patch (W. Trevor King)
      ........
        r85389 | victor.stinner | 2010-10-13 00:42:37 +0200 (mer., 13 oct. 2010) | 2 lines
      
        NEWS: Move #6612 to Library section
      ........
      93f5cd42
    • Victor Stinner's avatar
      Merged revisions 85386-85387,85389 via svnmerge from · d2f6ae63
      Victor Stinner yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r85386 | victor.stinner | 2010-10-13 00:23:23 +0200 (mer., 13 oct. 2010) | 3 lines
      
        Issue #6612: Fix site and sysconfig to catch os.getcwd() error, eg. if the
        current directory was deleted.
      ........
        r85387 | victor.stinner | 2010-10-13 00:26:08 +0200 (mer., 13 oct. 2010) | 2 lines
      
        #6612: add the author of the patch (W. Trevor King)
      ........
        r85389 | victor.stinner | 2010-10-13 00:42:37 +0200 (mer., 13 oct. 2010) | 2 lines
      
        NEWS: Move #6612 to Library section
      ........
      d2f6ae63