1. 07 Jul, 2014 8 commits
  2. 06 Jul, 2014 6 commits
  3. 05 Jul, 2014 11 commits
  4. 04 Jul, 2014 4 commits
  5. 03 Jul, 2014 6 commits
  6. 02 Jul, 2014 5 commits
    • Raymond Hettinger's avatar
      merge · 748ff8bf
      Raymond Hettinger authored
      748ff8bf
    • Raymond Hettinger's avatar
      11cda476
    • Victor Stinner's avatar
      (Merge 3.4) asyncio: sync with Tulip · b57d6a2f
      Victor Stinner authored
      * _UnixSubprocessTransport: fix file mode of stdin. Open stdin in write mode,
        not in read mode
      * Examples: close the event loop at exit
      * More reliable CoroWrapper.__del__. If the constructor is interrupted by
        KeyboardInterrupt or the coroutine objet is destroyed lately, some the
        _source_traceback attribute doesn't exist anymore.
      * repr(Task): include also the future the task is waiting for
      b57d6a2f
    • Victor Stinner's avatar
      asyncio: sync with Tulip · 2dba23af
      Victor Stinner authored
      * _UnixSubprocessTransport: fix file mode of stdin. Open stdin in write mode,
        not in read mode
      * Examples: close the event loop at exit
      * More reliable CoroWrapper.__del__. If the constructor is interrupted by
        KeyboardInterrupt or the coroutine objet is destroyed lately, some the
        _source_traceback attribute doesn't exist anymore.
      * repr(Task): include also the future the task is waiting for
      2dba23af
    • Victor Stinner's avatar
      (Merge 3.4) Issue #21090: io.FileIO.readall() does not ignore I/O errors · 6680e9f5
      Victor Stinner authored
      anymore. Before, it ignored I/O errors if at least the first C call read()
      succeed.
      6680e9f5