1. 23 Mar, 2006 9 kayıt (commit)
  2. 22 Mar, 2006 2 kayıt (commit)
  3. 20 Mar, 2006 5 kayıt (commit)
  4. 19 Mar, 2006 1 kayıt (commit)
  5. 18 Mar, 2006 1 kayıt (commit)
    • Tim Peters's avatar
      Merge rev 43091 from the trunk. · c612a5db
      Tim Peters yazdı
      """
      Try to find a host that responds slower from python.org so this test
      does not fail on macteagle (G4 OSX.4 in buildbot)
      """
      
      Since testConnectTimeout() frequently fails in the same way in 2.4
      branch, and this patch seems to have fixed it on the trunk, it
      should fix it on the 2.4 branch too.
      c612a5db
  6. 17 Mar, 2006 1 kayıt (commit)
  7. 16 Mar, 2006 4 kayıt (commit)
  8. 15 Mar, 2006 1 kayıt (commit)
    • Neal Norwitz's avatar
      Backport 43037: · 854e9188
      Neal Norwitz yazdı
      Move test code out of xxmodule and into _testcapimodule.c where it belongs.
      854e9188
  9. 14 Mar, 2006 2 kayıt (commit)
    • Neal Norwitz's avatar
      Backport 42932: · 8a2bffc2
      Neal Norwitz yazdı
      Try to be a bit more consistent on all platforms:
       python .
       python < .
      
      both print a message, return non-zero and do not core dump.
      This hopefully fixes the failure on Solaris.
      8a2bffc2
    • Neal Norwitz's avatar
      Backport 43022: · 91656802
      Neal Norwitz yazdı
      Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and
      PyObject_Unicode().  This problem was originally reported from Coverity
      and addresses mail on python-dev "checkin r43015".
      
      This inlines the conversion of the string to unicode and cleans
      up/simplifies some code at the end of the PyObject_Unicode().
      
      We really need a complete C API test module for all public APIs
      and passing good and bad parameter values.
      91656802
  10. 13 Mar, 2006 7 kayıt (commit)
    • Georg Brandl's avatar
      Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExact · 2f014f8d
      Georg Brandl yazdı
       (backport from rev. 43014)
      2f014f8d
    • Martin v. Löwis's avatar
      Backport of 42994: · 6b3cf5e0
      Martin v. Löwis yazdı
      Let the buildbot make a single pass in the test suite only.
      6b3cf5e0
    • Martin v. Löwis's avatar
      Backport of 42993: · 25aeec5d
      Martin v. Löwis yazdı
      Update to bzip2 1.0.3
      Make buildbot slaves automatically fetch bzip2 1.0.3.
      25aeec5d
    • Hye-Shik Chang's avatar
      Backport from trunk r42989: · b0c3bdde
      Hye-Shik Chang yazdı
      Bug #1448490: Fixed a bug that ISO-2022 codecs could not handle
      SS2 (single-shift 2) escape sequences correctly.
      b0c3bdde
    • Tim Peters's avatar
      Merge rev 42963 from the trunk. · ef63e9f3
      Tim Peters yazdı
      When the new -w option (yay! great idea) reruns a
      failed test, first display the name of the test (else
      it's not always clear from the output which test is
      getting run).
      ef63e9f3
    • Tim Peters's avatar
      Merge rev 41859 from the trunk. · 1baff3cf
      Tim Peters yazdı
      test_main():  Restore the original root logger level after running
      the tests.  This stops the confusing/annoying:
      
          No handlers could be found for logger "cookielib"
      
      message we got whenever some test running after test_logging
      happened to use cookielib.py (when not using regrtest's -r,
      this happened during test_urllib2; when using -r, it varied).
      1baff3cf
    • Tim Peters's avatar
      Merge rev 42984 from trunk. · 91040483
      Tim Peters yazdı
      Adding the /useenv means that one's PATH actually gets through. This is
      important for the _ssl.vproj build. It calls build_ssl.py which tries to
      find a Perl to use. Without "/useenv" Visual Studio is getting a PATH
      from somewhere else (presumably from its internal environment
      configuration). The result is that build_ssl.py fallsback to its
      "well-known" locations for a Perl install.
      91040483
  11. 12 Mar, 2006 5 kayıt (commit)
  12. 11 Mar, 2006 1 kayıt (commit)
    • Tim Peters's avatar
      Merge rev 42904 from the trunk. · 82e8f384
      Tim Peters yazdı
      _hotshot hotshot_profiler():  If write_header() returned
      an error code, this let `self` leak.  This is a disaster
      on Windows, since `self` already points to a newly-opened
      file object, and it was impossible for Python code to
      close the thing since the only reference to it was in a
      blob of leaked C memory.
      
      test_hotshot test_bad_sys_path():  This new test provoked
      the C bug above.  This test passed, but left an open
      "@test" file behind, which caused a massive cascade of
      bogus test failures in later, unrelated tests on Windows.
      Changed the test code to remove the @test file it leaves
      behind, which relies on the change above to close that
      file first.
      82e8f384
  13. 10 Mar, 2006 1 kayıt (commit)