<legend id='Q1CXo'><style id='Q1CXo'><dir id='Q1CXo'><q id='Q1CXo'></q></dir></style></legend>

    <i id='Q1CXo'><tr id='Q1CXo'><dt id='Q1CXo'><q id='Q1CXo'><span id='Q1CXo'><b id='Q1CXo'><form id='Q1CXo'><ins id='Q1CXo'></ins><ul id='Q1CXo'></ul><sub id='Q1CXo'></sub></form><legend id='Q1CXo'></legend><bdo id='Q1CXo'><pre id='Q1CXo'><center id='Q1CXo'></center></pre></bdo></b><th id='Q1CXo'></th></span></q></dt></tr></i><div id='Q1CXo'><tfoot id='Q1CXo'></tfoot><dl id='Q1CXo'><fieldset id='Q1CXo'></fieldset></dl></div>
    <tfoot id='Q1CXo'></tfoot>

          <bdo id='Q1CXo'></bdo><ul id='Q1CXo'></ul>
      1. <small id='Q1CXo'></small><noframes id='Q1CXo'>

      2. 多处理中的error_callback.Python 2中的池apply_async?

        时间:2023-05-26
        <legend id='2Mo08'><style id='2Mo08'><dir id='2Mo08'><q id='2Mo08'></q></dir></style></legend>

            <tfoot id='2Mo08'></tfoot>

              • <bdo id='2Mo08'></bdo><ul id='2Mo08'></ul>

                <small id='2Mo08'></small><noframes id='2Mo08'>

                  <tbody id='2Mo08'></tbody>

                <i id='2Mo08'><tr id='2Mo08'><dt id='2Mo08'><q id='2Mo08'><span id='2Mo08'><b id='2Mo08'><form id='2Mo08'><ins id='2Mo08'></ins><ul id='2Mo08'></ul><sub id='2Mo08'></sub></form><legend id='2Mo08'></legend><bdo id='2Mo08'><pre id='2Mo08'><center id='2Mo08'></center></pre></bdo></b><th id='2Mo08'></th></span></q></dt></tr></i><div id='2Mo08'><tfoot id='2Mo08'></tfoot><dl id='2Mo08'><fieldset id='2Mo08'></fieldset></dl></div>
                  本文介绍了多处理中的error_callback.Python 2中的池apply_async?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  函数apply_asyncPython 3 中具有参数error_callback.但是Python 2 中没有这个论点.

                  Function apply_async of multiprocessing.Pool class has argument error_callback in Python 3. But this argument is missing in Python 2.

                  有什么技巧可以在 Python 2 中实现相同的功能吗?理想情况下,我想编写在 Python 2 和 3 中运行的代码.

                  Is there any trick to achieve the same functionality in Python 2 ? Ideally I would like to write code which runs in both Python 2 and 3.

                  推荐答案

                  我还没试过python3.但对我来说,为了捕捉子进程中的错误,我将在子进程中运行的函数放在一个

                  I haven't tried python3 yet. But for me, to catch the errors in the child process, I put the function that runs in child process within a

                  import traceback
                  
                  
                  try:
                      your code that can make error
                  except Exception as e:
                      print e
                      return False, traceback.format_exc()
                  else:
                      return True, result
                  

                  这样我会知道是否有问题.

                  So that I will know if something goes wrong.

                  我将返回格式更改为 OP 的注释,以便子进程返回一个元组 (is_success, result or error traceback message)

                  I change the return format as OP's comment so that the child process returns a tuple (is_success, result or error traceback message )

                  这样主进程将首先读取标志is_success,然后相应地处理第二个参数.

                  So that main process will first read the flag is_success and then handles the second argument accordingly.

                  这篇关于多处理中的error_callback.Python 2中的池apply_async?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Python 3.4 多处理递归 Pool.map() 下一篇:具有单个函数的 Python 多处理

                  相关文章

                  最新文章

                • <i id='rbaEH'><tr id='rbaEH'><dt id='rbaEH'><q id='rbaEH'><span id='rbaEH'><b id='rbaEH'><form id='rbaEH'><ins id='rbaEH'></ins><ul id='rbaEH'></ul><sub id='rbaEH'></sub></form><legend id='rbaEH'></legend><bdo id='rbaEH'><pre id='rbaEH'><center id='rbaEH'></center></pre></bdo></b><th id='rbaEH'></th></span></q></dt></tr></i><div id='rbaEH'><tfoot id='rbaEH'></tfoot><dl id='rbaEH'><fieldset id='rbaEH'></fieldset></dl></div>
                    <bdo id='rbaEH'></bdo><ul id='rbaEH'></ul>

                  <legend id='rbaEH'><style id='rbaEH'><dir id='rbaEH'><q id='rbaEH'></q></dir></style></legend>

                  1. <small id='rbaEH'></small><noframes id='rbaEH'>

                    <tfoot id='rbaEH'></tfoot>