1. 06 Agu, 2013 1 kayıt (commit)
  2. 01 Agu, 2013 1 kayıt (commit)
  3. 31 Tem, 2013 1 kayıt (commit)
  4. 04 Tem, 2013 1 kayıt (commit)
  5. 14 Haz, 2013 1 kayıt (commit)
  6. 06 May, 2013 1 kayıt (commit)
  7. 04 May, 2013 1 kayıt (commit)
  8. 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
  9. 12 Nis, 2013 1 kayıt (commit)
  10. 12 Şub, 2013 1 kayıt (commit)
  11. 25 Ock, 2013 1 kayıt (commit)
  12. 25 Ara, 2012 1 kayıt (commit)
  13. 18 Ara, 2012 1 kayıt (commit)
  14. 23 Kas, 2012 1 kayıt (commit)
  15. 18 Kas, 2012 1 kayıt (commit)
  16. 05 Eki, 2012 1 kayıt (commit)
  17. 03 Tem, 2012 1 kayıt (commit)
  18. 24 Haz, 2012 1 kayıt (commit)
  19. 26 May, 2012 1 kayıt (commit)
  20. 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
  21. 21 Şub, 2012 1 kayıt (commit)
  22. 05 Şub, 2012 1 kayıt (commit)
  23. 04 Kas, 2011 1 kayıt (commit)
  24. 04 May, 2011 1 kayıt (commit)
  25. 23 Mar, 2011 1 kayıt (commit)
  26. 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
  27. 12 Eki, 2010 3 kayıt (commit)
  28. 01 Eyl, 2010 1 kayıt (commit)
  29. 13 Agu, 2010 1 kayıt (commit)
  30. 01 Agu, 2010 1 kayıt (commit)
  31. 27 Haz, 2010 1 kayıt (commit)
    • Benjamin Peterson's avatar
      Merged revisions 81465-81466,81468,81679,81735,81760,81868,82183 via svnmerge from · 3e5cd1d0
      Benjamin Peterson yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r81465 | georg.brandl | 2010-05-22 06:29:19 -0500 (Sat, 22 May 2010) | 2 lines
      
        Issue #3924: Ignore cookies with invalid "version" field in cookielib.
      ........
        r81466 | georg.brandl | 2010-05-22 06:31:16 -0500 (Sat, 22 May 2010) | 1 line
      
        Underscore the name of an internal utility function.
      ........
        r81468 | georg.brandl | 2010-05-22 06:43:25 -0500 (Sat, 22 May 2010) | 1 line
      
        #8635: document enumerate() start parameter in docstring.
      ........
        r81679 | benjamin.peterson | 2010-06-03 16:21:03 -0500 (Thu, 03 Jun 2010) | 1 line
      
        use a set for membership testing
      ........
        r81735 | michael.foord | 2010-06-05 06:46:59 -0500 (Sat, 05 Jun 2010) | 1 line
      
        Extract error message truncating into a method (unittest.TestCase._truncateMessage).
      ........
        r81760 | michael.foord | 2010-06-05 14:38:42 -0500 (Sat, 05 Jun 2010) | 1 line
      
        Issue 8302. SkipTest exception is setUpClass or setUpModule is now reported as a skip rather than an error.
      ........
        r81868 | benjamin.peterson | 2010-06-09 14:45:04 -0500 (Wed, 09 Jun 2010) | 1 line
      
        fix code formatting
      ........
        r82183 | benjamin.peterson | 2010-06-23 15:29:26 -0500 (Wed, 23 Jun 2010) | 1 line
      
        cpython only gc tests
      ........
      3e5cd1d0
  32. 03 Haz, 2010 1 kayıt (commit)
  33. 08 May, 2010 2 kayıt (commit)
  34. 17 Nis, 2010 1 kayıt (commit)
  35. 12 Nis, 2010 1 kayıt (commit)