1. 02 Tem, 2014 14 kayıt (commit)
  2. 01 Tem, 2014 20 kayıt (commit)
  3. 30 Haz, 2014 6 kayıt (commit)
    • Terry Jan Reedy's avatar
      Merge with 3.4 · c26c51a9
      Terry Jan Reedy yazdı
      c26c51a9
    • Terry Jan Reedy's avatar
      Issue #21882: In turtle demos, remove module scope gui and sys calls by · f5ac57dc
      Terry Jan Reedy yazdı
      either deleting or moving to the module's main function.
      f5ac57dc
    • Victor Stinner's avatar
      (Merge 3.4) Issue #21163: BaseEventLoop.run_until_complete() and · b1f9ed75
      Victor Stinner yazdı
      test_utils.run_briefly() don't log the "destroy pending task" message anymore.
      The log is redundant for run_until_complete() and useless in run_briefly().
      b1f9ed75
    • Victor Stinner's avatar
      Issue #21163: BaseEventLoop.run_until_complete() and test_utils.run_briefly() · 98b6391f
      Victor Stinner yazdı
      don't log the "destroy pending task" message anymore. The log is redundant for
      run_until_complete() and useless in run_briefly().
      98b6391f
    • Victor Stinner's avatar
      asyncio: sync with Tulip · 91dd20ba
      Victor Stinner yazdı
      - Sort imports
      - Simplify/optimize iscoroutine(). Inline inspect.isgenerator(obj): replace it
        with isinstance(obj, types.GeneratorType)
      - CoroWrapper: check at runtime if Python has the yield-from bug #21209.  If
        Python has the bug, check if CoroWrapper.send() was called by yield-from to
        decide if parameters must be unpacked or not.
      - Fix "Task was destroyed but it is pending!" warning in
        test_task_source_traceback()
      91dd20ba
    • Victor Stinner's avatar
      asyncio: sync with Tulip · b75380f3
      Victor Stinner yazdı
      - Sort imports
      - Simplify/optimize iscoroutine(). Inline inspect.isgenerator(obj): replace it
        with isinstance(obj, types.GeneratorType)
      - CoroWrapper: check at runtime if Python has the yield-from bug #21209.  If
        Python has the bug, check if CoroWrapper.send() was called by yield-from to
        decide if parameters must be unpacked or not.
      - Fix "Task was destroyed but it is pending!" warning in
        test_task_source_traceback()
      b75380f3