1. 22 Feb, 2011 3 commits
    • Brett Cannon's avatar
      Merged revisions 88498 via svnmerge from · 45b96d37
      Brett Cannon authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r88498 | brett.cannon | 2011-02-21 19:25:12 -0800 (Mon, 21 Feb 2011) | 8 lines
      
        Issue #11074: Make 'tokenize' so it can be reloaded.
      
        The module stored away the 'open' object as found in the global namespace
        (which fell through to the built-in namespace) since it defined its own 'open'.
        Problem is that if you reloaded the module it then grabbed the 'open' defined
        in the previous load, leading to code that infinite recursed. Switched to
        simply call builtins.open directly.
      ........
      45b96d37
    • Brett Cannon's avatar
      Merged revisions 88496 via svnmerge from · 64c9af15
      Brett Cannon authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r88496 | brett.cannon | 2011-02-21 19:14:12 -0800 (Mon, 21 Feb 2011) | 4 lines
      
        Issue #10512: close the log file in cgi when running tests.
      
        Thanks to Nadeem Vawda for the find and an initial fix.
      ........
      64c9af15
    • Brett Cannon's avatar
      Blocked revisions 88494 via svnmerge · d8b64788
      Brett Cannon authored
      ........
        r88494 | brett.cannon | 2011-02-21 19:04:06 -0800 (Mon, 21 Feb 2011) | 10 lines
      
        Issue #10992: make tests pass when run under coverage.
      
        Various tests fail when run under coverage. A primary culprit is refcount tests
        which fail as the counts are thrown off by the coverage code. A new decorator
        -- test.support.refcount_test -- is used to decorate tests which test refcounts
        and to skip them when running under coverage. Other tests simply fail because
        of changes in the system (e.g., __local__ suddenly appearing).
      
        Thanks to Kristian Vlaardingerbroek for helping to diagnose the test failures.
      ........
      d8b64788
  2. 21 Feb, 2011 13 commits
  3. 20 Feb, 2011 4 commits
  4. 19 Feb, 2011 6 commits
  5. 18 Feb, 2011 2 commits
  6. 17 Feb, 2011 2 commits
  7. 15 Feb, 2011 4 commits
  8. 14 Feb, 2011 2 commits
  9. 13 Feb, 2011 4 commits