1. 03 Haz, 2009 1 kayıt (commit)
  2. 12 Nis, 2009 1 kayıt (commit)
    • R. David Murray's avatar
      Merged revisions 70873,70904,70934,71490 via svnmerge from · 78532bae
      R. David Murray yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r70873 | josiah.carlson | 2009-03-31 15:32:34 -0400 (Tue, 31 Mar 2009) | 2 lines
      
        This resolves issue 1161031.  Tests pass.
      ........
        r70904 | josiah.carlson | 2009-03-31 17:49:36 -0400 (Tue, 31 Mar 2009) | 3 lines
      
        Made handle_expt_event() be called last, so that we don't accidentally read
        after closing the socket.
      ........
        r70934 | josiah.carlson | 2009-03-31 21:28:11 -0400 (Tue, 31 Mar 2009) | 2 lines
      
        Fix for failing asyncore tests.
      ........
        r71490 | r.david.murray | 2009-04-11 13:52:56 -0400 (Sat, 11 Apr 2009) | 4 lines
      
        Make test_asyncore tests match code changes introduced by the
        fix to Issue1161031, refactoring the test to simplify it in
        the process.
      ........
      78532bae
  3. 19 Kas, 2008 1 kayıt (commit)
  4. 20 Tem, 2008 1 kayıt (commit)
  5. 11 Tem, 2008 1 kayıt (commit)
  6. 07 Tem, 2008 2 kayıt (commit)
  7. 06 Ock, 2008 1 kayıt (commit)
  8. 22 Eki, 2007 1 kayıt (commit)
  9. 30 Agu, 2007 1 kayıt (commit)
  10. 18 Tem, 2007 1 kayıt (commit)
  11. 09 Şub, 2007 1 kayıt (commit)
    • Guido van Rossum's avatar
      Fix most trivially-findable print statements. · be19ed77
      Guido van Rossum yazdı
      There's one major and one minor category still unfixed:
      doctests are the major category (and I hope to be able to augment the
      refactoring tool to refactor bona fide doctests soon);
      other code generating print statements in strings is the minor category.
      
      (Oh, and I don't know if the compiler package works.)
      be19ed77
  12. 10 Ock, 2007 1 kayıt (commit)
  13. 18 Agu, 2006 1 kayıt (commit)
  14. 01 Eyl, 2005 1 kayıt (commit)
  15. 01 Eyl, 2004 1 kayıt (commit)
  16. 13 Agu, 2004 1 kayıt (commit)
  17. 18 Tem, 2004 1 kayıt (commit)
  18. 15 Tem, 2004 1 kayıt (commit)
  19. 10 Tem, 2004 2 kayıt (commit)
  20. 07 Tem, 2004 2 kayıt (commit)
  21. 30 Haz, 2004 1 kayıt (commit)
  22. 14 Haz, 2004 1 kayıt (commit)
  23. 03 Haz, 2004 1 kayıt (commit)
  24. 21 Mar, 2004 6 kayıt (commit)
  25. 08 Şub, 2004 1 kayıt (commit)
  26. 22 Eki, 2003 2 kayıt (commit)
  27. 20 Eki, 2003 1 kayıt (commit)
  28. 14 Şub, 2003 1 kayıt (commit)
  29. 26 Ara, 2002 1 kayıt (commit)
  30. 05 Kas, 2002 1 kayıt (commit)
    • Guido van Rossum's avatar
      Fix an old bug in poll(). When a signal is handled while we're · e94d8fab
      Guido van Rossum yazdı
      blocked in select(), this will raise select.error with errno set to
      EINTR.  The except clauses correctly ignores this error, but the rest
      of the logic will then call read() for all objects in select's *input*
      list of read file descriptors.  Then when an object's read_handler()
      is naive, it will call recv() on its socket, which will raise an
      IOError, and then asyncore decides to close the socket.  To fix this,
      we simply return in this case.
      
      Backport candidate.
      e94d8fab
  31. 26 Eyl, 2002 1 kayıt (commit)