1. 09 Ara, 2010 1 kayıt (commit)
  2. 08 Eki, 2010 2 kayıt (commit)
  3. 29 Eyl, 2010 2 kayıt (commit)
  4. 12 Nis, 2010 1 kayıt (commit)
  5. 05 Nis, 2010 1 kayıt (commit)
    • Brian Curtin's avatar
      Fix a failing test on an apparently slow Windows buildbot. · fce1d31d
      Brian Curtin yazdı
      On slower Windows machines, waiting 0.1 seconds can sometimes not be
      enough for a subprocess to start and be ready to accept signals, causing
      the test to fail. One buildbot is also choking on input()/EOFError so
      that was changed to not depend on input.
      fce1d31d
  6. 02 Nis, 2010 2 kayıt (commit)
    • Benjamin Peterson's avatar
      set svn:eol-style on new file · 4564c08b
      Benjamin Peterson yazdı
      4564c08b
    • Brian Curtin's avatar
      Implement #1220212. Add os.kill support for Windows. · e5aa886b
      Brian Curtin yazdı
      os.kill takes one of two newly added signals, CTRL_C_EVENT and
      CTRL_BREAK_EVENT, or any integer value. The events are a special case
      which work with subprocess console applications which implement a
      special console control handler. Any other value but those two will
      cause os.kill to use TerminateProcess, outright killing the process.
      
      This change adds win_console_handler.py, which is a script to implement
      SetConsoleCtrlHandler and applicable handler function, using ctypes.
      
      subprocess also gets another attribute which is a necessary flag to
      creationflags in Popen in order to send the CTRL events.
      e5aa886b