gooderp18绿色标准版
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

419 linhas
24KB

  1. <!DOCTYPE html>
  2. <html lang="en" data-content_root="../">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <meta property="og:title" content="Extending" />
  7. <meta property="og:type" content="website" />
  8. <meta property="og:url" content="https://docs.python.org/3/library/asyncio-extending.html" />
  9. <meta property="og:site_name" content="Python documentation" />
  10. <meta property="og:description" content="The main direction for asyncio extending is writing custom event loop classes. Asyncio has helpers that could be used to simplify this task. Writing a Custom Event Loop: asyncio.AbstractEventLoop d..." />
  11. <meta property="og:image" content="https://docs.python.org/3/_static/og-image.png" />
  12. <meta property="og:image:alt" content="Python documentation" />
  13. <meta name="description" content="The main direction for asyncio extending is writing custom event loop classes. Asyncio has helpers that could be used to simplify this task. Writing a Custom Event Loop: asyncio.AbstractEventLoop d..." />
  14. <meta property="og:image:width" content="200" />
  15. <meta property="og:image:height" content="200" />
  16. <meta name="theme-color" content="#3776ab" />
  17. <title>Extending &#8212; Python 3.12.3 documentation</title><meta name="viewport" content="width=device-width, initial-scale=1.0">
  18. <link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=80d5e7a1" />
  19. <link rel="stylesheet" type="text/css" href="../_static/pydoctheme.css?v=bb723527" />
  20. <link id="pygments_dark_css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css" href="../_static/pygments_dark.css?v=b20cc3f5" />
  21. <script src="../_static/documentation_options.js?v=2c828074"></script>
  22. <script src="../_static/doctools.js?v=888ff710"></script>
  23. <script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
  24. <script src="../_static/sidebar.js"></script>
  25. <link rel="search" type="application/opensearchdescription+xml"
  26. title="Search within Python 3.12.3 documentation"
  27. href="../_static/opensearch.xml"/>
  28. <link rel="author" title="About these documents" href="../about.html" />
  29. <link rel="index" title="Index" href="../genindex.html" />
  30. <link rel="search" title="Search" href="../search.html" />
  31. <link rel="copyright" title="Copyright" href="../copyright.html" />
  32. <link rel="next" title="High-level API Index" href="asyncio-api-index.html" />
  33. <link rel="prev" title="Platform Support" href="asyncio-platforms.html" />
  34. <link rel="canonical" href="https://docs.python.org/3/library/asyncio-extending.html" />
  35. <style>
  36. @media only screen {
  37. table.full-width-table {
  38. width: 100%;
  39. }
  40. }
  41. </style>
  42. <link rel="stylesheet" href="../_static/pydoctheme_dark.css" media="(prefers-color-scheme: dark)" id="pydoctheme_dark_css">
  43. <link rel="shortcut icon" type="image/png" href="../_static/py.svg" />
  44. <script type="text/javascript" src="../_static/copybutton.js"></script>
  45. <script type="text/javascript" src="../_static/menu.js"></script>
  46. <script type="text/javascript" src="../_static/search-focus.js"></script>
  47. <script type="text/javascript" src="../_static/themetoggle.js"></script>
  48. </head>
  49. <body>
  50. <div class="mobile-nav">
  51. <input type="checkbox" id="menuToggler" class="toggler__input" aria-controls="navigation"
  52. aria-pressed="false" aria-expanded="false" role="button" aria-label="Menu" />
  53. <nav class="nav-content" role="navigation">
  54. <label for="menuToggler" class="toggler__label">
  55. <span></span>
  56. </label>
  57. <span class="nav-items-wrapper">
  58. <a href="https://www.python.org/" class="nav-logo">
  59. <img src="../_static/py.svg" alt="Python logo"/>
  60. </a>
  61. <span class="version_switcher_placeholder"></span>
  62. <form role="search" class="search" action="../search.html" method="get">
  63. <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" class="search-icon">
  64. <path fill-rule="nonzero" fill="currentColor" d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 001.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 00-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 005.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path>
  65. </svg>
  66. <input placeholder="Quick search" aria-label="Quick search" type="search" name="q" />
  67. <input type="submit" value="Go"/>
  68. </form>
  69. </span>
  70. </nav>
  71. <div class="menu-wrapper">
  72. <nav class="menu" role="navigation" aria-label="main navigation">
  73. <div class="language_switcher_placeholder"></div>
  74. <label class="theme-selector-label">
  75. Theme
  76. <select class="theme-selector" oninput="activateTheme(this.value)">
  77. <option value="auto" selected>Auto</option>
  78. <option value="light">Light</option>
  79. <option value="dark">Dark</option>
  80. </select>
  81. </label>
  82. <div>
  83. <h3><a href="../contents.html">Table of Contents</a></h3>
  84. <ul>
  85. <li><a class="reference internal" href="#">Extending</a><ul>
  86. <li><a class="reference internal" href="#writing-a-custom-event-loop">Writing a Custom Event Loop</a></li>
  87. <li><a class="reference internal" href="#future-and-task-private-constructors">Future and Task private constructors</a></li>
  88. <li><a class="reference internal" href="#task-lifetime-support">Task lifetime support</a></li>
  89. </ul>
  90. </li>
  91. </ul>
  92. </div>
  93. <div>
  94. <h4>Previous topic</h4>
  95. <p class="topless"><a href="asyncio-platforms.html"
  96. title="previous chapter">Platform Support</a></p>
  97. </div>
  98. <div>
  99. <h4>Next topic</h4>
  100. <p class="topless"><a href="asyncio-api-index.html"
  101. title="next chapter">High-level API Index</a></p>
  102. </div>
  103. <div role="note" aria-label="source link">
  104. <h3>This Page</h3>
  105. <ul class="this-page-menu">
  106. <li><a href="../bugs.html">Report a Bug</a></li>
  107. <li>
  108. <a href="https://github.com/python/cpython/blob/main/Doc/library/asyncio-extending.rst"
  109. rel="nofollow">Show Source
  110. </a>
  111. </li>
  112. </ul>
  113. </div>
  114. </nav>
  115. </div>
  116. </div>
  117. <div class="related" role="navigation" aria-label="related navigation">
  118. <h3>Navigation</h3>
  119. <ul>
  120. <li class="right" style="margin-right: 10px">
  121. <a href="../genindex.html" title="General Index"
  122. accesskey="I">index</a></li>
  123. <li class="right" >
  124. <a href="../py-modindex.html" title="Python Module Index"
  125. >modules</a> |</li>
  126. <li class="right" >
  127. <a href="asyncio-api-index.html" title="High-level API Index"
  128. accesskey="N">next</a> |</li>
  129. <li class="right" >
  130. <a href="asyncio-platforms.html" title="Platform Support"
  131. accesskey="P">previous</a> |</li>
  132. <li><img src="../_static/py.svg" alt="Python logo" style="vertical-align: middle; margin-top: -1px"/></li>
  133. <li><a href="https://www.python.org/">Python</a> &#187;</li>
  134. <li class="switchers">
  135. <div class="language_switcher_placeholder"></div>
  136. <div class="version_switcher_placeholder"></div>
  137. </li>
  138. <li>
  139. </li>
  140. <li id="cpython-language-and-version">
  141. <a href="../index.html">3.12.3 Documentation</a> &#187;
  142. </li>
  143. <li class="nav-item nav-item-1"><a href="index.html" >The Python Standard Library</a> &#187;</li>
  144. <li class="nav-item nav-item-2"><a href="ipc.html" >Networking and Interprocess Communication</a> &#187;</li>
  145. <li class="nav-item nav-item-3"><a href="asyncio.html" accesskey="U"><code class="xref py py-mod docutils literal notranslate"><span class="pre">asyncio</span></code> — Asynchronous I/O</a> &#187;</li>
  146. <li class="nav-item nav-item-this"><a href="">Extending</a></li>
  147. <li class="right">
  148. <div class="inline-search" role="search">
  149. <form class="inline-search" action="../search.html" method="get">
  150. <input placeholder="Quick search" aria-label="Quick search" type="search" name="q" id="search-box" />
  151. <input type="submit" value="Go" />
  152. </form>
  153. </div>
  154. |
  155. </li>
  156. <li class="right">
  157. <label class="theme-selector-label">
  158. Theme
  159. <select class="theme-selector" oninput="activateTheme(this.value)">
  160. <option value="auto" selected>Auto</option>
  161. <option value="light">Light</option>
  162. <option value="dark">Dark</option>
  163. </select>
  164. </label> |</li>
  165. </ul>
  166. </div>
  167. <div class="document">
  168. <div class="documentwrapper">
  169. <div class="bodywrapper">
  170. <div class="body" role="main">
  171. <section id="extending">
  172. <h1>Extending<a class="headerlink" href="#extending" title="Link to this heading">¶</a></h1>
  173. <p>The main direction for <a class="reference internal" href="asyncio.html#module-asyncio" title="asyncio: Asynchronous I/O."><code class="xref py py-mod docutils literal notranslate"><span class="pre">asyncio</span></code></a> extending is writing custom <em>event loop</em>
  174. classes. Asyncio has helpers that could be used to simplify this task.</p>
  175. <div class="admonition note">
  176. <p class="admonition-title">Note</p>
  177. <p>Third-parties should reuse existing asyncio code with caution,
  178. a new Python version is free to break backward compatibility
  179. in <em>internal</em> part of API.</p>
  180. </div>
  181. <section id="writing-a-custom-event-loop">
  182. <h2>Writing a Custom Event Loop<a class="headerlink" href="#writing-a-custom-event-loop" title="Link to this heading">¶</a></h2>
  183. <p><a class="reference internal" href="asyncio-eventloop.html#asyncio.AbstractEventLoop" title="asyncio.AbstractEventLoop"><code class="xref py py-class docutils literal notranslate"><span class="pre">asyncio.AbstractEventLoop</span></code></a> declares very many methods. Implementing all them
  184. from scratch is a tedious job.</p>
  185. <p>A loop can get many common methods implementation for free by inheriting from
  186. <code class="xref py py-class docutils literal notranslate"><span class="pre">asyncio.BaseEventLoop</span></code>.</p>
  187. <p>In turn, the successor should implement a bunch of <em>private</em> methods declared but not
  188. implemented in <code class="xref py py-class docutils literal notranslate"><span class="pre">asyncio.BaseEventLoop</span></code>.</p>
  189. <p>For example, <code class="docutils literal notranslate"><span class="pre">loop.create_connection()</span></code> checks arguments, resolves DNS addresses, and
  190. calls <code class="docutils literal notranslate"><span class="pre">loop._make_socket_transport()</span></code> that should be implemented by inherited class.
  191. The <code class="docutils literal notranslate"><span class="pre">_make_socket_transport()</span></code> method is not documented and is considered as an
  192. <em>internal</em> API.</p>
  193. </section>
  194. <section id="future-and-task-private-constructors">
  195. <h2>Future and Task private constructors<a class="headerlink" href="#future-and-task-private-constructors" title="Link to this heading">¶</a></h2>
  196. <p><a class="reference internal" href="asyncio-future.html#asyncio.Future" title="asyncio.Future"><code class="xref py py-class docutils literal notranslate"><span class="pre">asyncio.Future</span></code></a> and <a class="reference internal" href="asyncio-task.html#asyncio.Task" title="asyncio.Task"><code class="xref py py-class docutils literal notranslate"><span class="pre">asyncio.Task</span></code></a> should be never created directly,
  197. please use corresponding <a class="reference internal" href="asyncio-eventloop.html#asyncio.loop.create_future" title="asyncio.loop.create_future"><code class="xref py py-meth docutils literal notranslate"><span class="pre">loop.create_future()</span></code></a> and <a class="reference internal" href="asyncio-eventloop.html#asyncio.loop.create_task" title="asyncio.loop.create_task"><code class="xref py py-meth docutils literal notranslate"><span class="pre">loop.create_task()</span></code></a>,
  198. or <a class="reference internal" href="asyncio-task.html#asyncio.create_task" title="asyncio.create_task"><code class="xref py py-func docutils literal notranslate"><span class="pre">asyncio.create_task()</span></code></a> factories instead.</p>
  199. <p>However, third-party <em>event loops</em> may <em>reuse</em> built-in future and task implementations
  200. for the sake of getting a complex and highly optimized code for free.</p>
  201. <p>For this purpose the following, <em>private</em> constructors are listed:</p>
  202. <dl class="py method">
  203. <dt class="sig sig-object py" id="asyncio.Future.__init__">
  204. <span class="sig-prename descclassname"><span class="pre">Future.</span></span><span class="sig-name descname"><span class="pre">__init__</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="o"><span class="pre">*</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">loop</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#asyncio.Future.__init__" title="Link to this definition">¶</a></dt>
  205. <dd><p>Create a built-in future instance.</p>
  206. <p><em>loop</em> is an optional event loop instance.</p>
  207. </dd></dl>
  208. <dl class="py method">
  209. <dt class="sig sig-object py" id="asyncio.Task.__init__">
  210. <span class="sig-prename descclassname"><span class="pre">Task.</span></span><span class="sig-name descname"><span class="pre">__init__</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">coro</span></span></em>, <em class="sig-param"><span class="o"><span class="pre">*</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">loop</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">name</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">context</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#asyncio.Task.__init__" title="Link to this definition">¶</a></dt>
  211. <dd><p>Create a built-in task instance.</p>
  212. <p><em>loop</em> is an optional event loop instance. The rest of arguments are described in
  213. <a class="reference internal" href="asyncio-eventloop.html#asyncio.loop.create_task" title="asyncio.loop.create_task"><code class="xref py py-meth docutils literal notranslate"><span class="pre">loop.create_task()</span></code></a> description.</p>
  214. <div class="versionchanged">
  215. <p><span class="versionmodified changed">Changed in version 3.11: </span><em>context</em> argument is added.</p>
  216. </div>
  217. </dd></dl>
  218. </section>
  219. <section id="task-lifetime-support">
  220. <h2>Task lifetime support<a class="headerlink" href="#task-lifetime-support" title="Link to this heading">¶</a></h2>
  221. <p>A third party task implementation should call the following functions to keep a task
  222. visible by <a class="reference internal" href="asyncio-task.html#asyncio.all_tasks" title="asyncio.all_tasks"><code class="xref py py-func docutils literal notranslate"><span class="pre">asyncio.all_tasks()</span></code></a> and <a class="reference internal" href="asyncio-task.html#asyncio.current_task" title="asyncio.current_task"><code class="xref py py-func docutils literal notranslate"><span class="pre">asyncio.current_task()</span></code></a>:</p>
  223. <dl class="py function">
  224. <dt class="sig sig-object py" id="asyncio._register_task">
  225. <span class="sig-prename descclassname"><span class="pre">asyncio.</span></span><span class="sig-name descname"><span class="pre">_register_task</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">task</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#asyncio._register_task" title="Link to this definition">¶</a></dt>
  226. <dd><p>Register a new <em>task</em> as managed by <em>asyncio</em>.</p>
  227. <p>Call the function from a task constructor.</p>
  228. </dd></dl>
  229. <dl class="py function">
  230. <dt class="sig sig-object py" id="asyncio._unregister_task">
  231. <span class="sig-prename descclassname"><span class="pre">asyncio.</span></span><span class="sig-name descname"><span class="pre">_unregister_task</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">task</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#asyncio._unregister_task" title="Link to this definition">¶</a></dt>
  232. <dd><p>Unregister a <em>task</em> from <em>asyncio</em> internal structures.</p>
  233. <p>The function should be called when a task is about to finish.</p>
  234. </dd></dl>
  235. <dl class="py function">
  236. <dt class="sig sig-object py" id="asyncio._enter_task">
  237. <span class="sig-prename descclassname"><span class="pre">asyncio.</span></span><span class="sig-name descname"><span class="pre">_enter_task</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">loop</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">task</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#asyncio._enter_task" title="Link to this definition">¶</a></dt>
  238. <dd><p>Switch the current task to the <em>task</em> argument.</p>
  239. <p>Call the function just before executing a portion of embedded <em>coroutine</em>
  240. (<a class="reference internal" href="../reference/datamodel.html#coroutine.send" title="coroutine.send"><code class="xref py py-meth docutils literal notranslate"><span class="pre">coroutine.send()</span></code></a> or <a class="reference internal" href="../reference/datamodel.html#coroutine.throw" title="coroutine.throw"><code class="xref py py-meth docutils literal notranslate"><span class="pre">coroutine.throw()</span></code></a>).</p>
  241. </dd></dl>
  242. <dl class="py function">
  243. <dt class="sig sig-object py" id="asyncio._leave_task">
  244. <span class="sig-prename descclassname"><span class="pre">asyncio.</span></span><span class="sig-name descname"><span class="pre">_leave_task</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">loop</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">task</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#asyncio._leave_task" title="Link to this definition">¶</a></dt>
  245. <dd><p>Switch the current task back from <em>task</em> to <code class="docutils literal notranslate"><span class="pre">None</span></code>.</p>
  246. <p>Call the function just after <a class="reference internal" href="../reference/datamodel.html#coroutine.send" title="coroutine.send"><code class="xref py py-meth docutils literal notranslate"><span class="pre">coroutine.send()</span></code></a> or <a class="reference internal" href="../reference/datamodel.html#coroutine.throw" title="coroutine.throw"><code class="xref py py-meth docutils literal notranslate"><span class="pre">coroutine.throw()</span></code></a>
  247. execution.</p>
  248. </dd></dl>
  249. </section>
  250. </section>
  251. <div class="clearer"></div>
  252. </div>
  253. </div>
  254. </div>
  255. <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
  256. <div class="sphinxsidebarwrapper">
  257. <div>
  258. <h3><a href="../contents.html">Table of Contents</a></h3>
  259. <ul>
  260. <li><a class="reference internal" href="#">Extending</a><ul>
  261. <li><a class="reference internal" href="#writing-a-custom-event-loop">Writing a Custom Event Loop</a></li>
  262. <li><a class="reference internal" href="#future-and-task-private-constructors">Future and Task private constructors</a></li>
  263. <li><a class="reference internal" href="#task-lifetime-support">Task lifetime support</a></li>
  264. </ul>
  265. </li>
  266. </ul>
  267. </div>
  268. <div>
  269. <h4>Previous topic</h4>
  270. <p class="topless"><a href="asyncio-platforms.html"
  271. title="previous chapter">Platform Support</a></p>
  272. </div>
  273. <div>
  274. <h4>Next topic</h4>
  275. <p class="topless"><a href="asyncio-api-index.html"
  276. title="next chapter">High-level API Index</a></p>
  277. </div>
  278. <div role="note" aria-label="source link">
  279. <h3>This Page</h3>
  280. <ul class="this-page-menu">
  281. <li><a href="../bugs.html">Report a Bug</a></li>
  282. <li>
  283. <a href="https://github.com/python/cpython/blob/main/Doc/library/asyncio-extending.rst"
  284. rel="nofollow">Show Source
  285. </a>
  286. </li>
  287. </ul>
  288. </div>
  289. </div>
  290. <div id="sidebarbutton" title="Collapse sidebar">
  291. <span>«</span>
  292. </div>
  293. </div>
  294. <div class="clearer"></div>
  295. </div>
  296. <div class="related" role="navigation" aria-label="related navigation">
  297. <h3>Navigation</h3>
  298. <ul>
  299. <li class="right" style="margin-right: 10px">
  300. <a href="../genindex.html" title="General Index"
  301. >index</a></li>
  302. <li class="right" >
  303. <a href="../py-modindex.html" title="Python Module Index"
  304. >modules</a> |</li>
  305. <li class="right" >
  306. <a href="asyncio-api-index.html" title="High-level API Index"
  307. >next</a> |</li>
  308. <li class="right" >
  309. <a href="asyncio-platforms.html" title="Platform Support"
  310. >previous</a> |</li>
  311. <li><img src="../_static/py.svg" alt="Python logo" style="vertical-align: middle; margin-top: -1px"/></li>
  312. <li><a href="https://www.python.org/">Python</a> &#187;</li>
  313. <li class="switchers">
  314. <div class="language_switcher_placeholder"></div>
  315. <div class="version_switcher_placeholder"></div>
  316. </li>
  317. <li>
  318. </li>
  319. <li id="cpython-language-and-version">
  320. <a href="../index.html">3.12.3 Documentation</a> &#187;
  321. </li>
  322. <li class="nav-item nav-item-1"><a href="index.html" >The Python Standard Library</a> &#187;</li>
  323. <li class="nav-item nav-item-2"><a href="ipc.html" >Networking and Interprocess Communication</a> &#187;</li>
  324. <li class="nav-item nav-item-3"><a href="asyncio.html" ><code class="xref py py-mod docutils literal notranslate"><span class="pre">asyncio</span></code> — Asynchronous I/O</a> &#187;</li>
  325. <li class="nav-item nav-item-this"><a href="">Extending</a></li>
  326. <li class="right">
  327. <div class="inline-search" role="search">
  328. <form class="inline-search" action="../search.html" method="get">
  329. <input placeholder="Quick search" aria-label="Quick search" type="search" name="q" id="search-box" />
  330. <input type="submit" value="Go" />
  331. </form>
  332. </div>
  333. |
  334. </li>
  335. <li class="right">
  336. <label class="theme-selector-label">
  337. Theme
  338. <select class="theme-selector" oninput="activateTheme(this.value)">
  339. <option value="auto" selected>Auto</option>
  340. <option value="light">Light</option>
  341. <option value="dark">Dark</option>
  342. </select>
  343. </label> |</li>
  344. </ul>
  345. </div>
  346. <div class="footer">
  347. &copy;
  348. <a href="../copyright.html">
  349. Copyright
  350. </a>
  351. 2001-2024, Python Software Foundation.
  352. <br />
  353. This page is licensed under the Python Software Foundation License Version 2.
  354. <br />
  355. Examples, recipes, and other code in the documentation are additionally licensed under the Zero Clause BSD License.
  356. <br />
  357. See <a href="/license.html">History and License</a> for more information.<br />
  358. <br />
  359. The Python Software Foundation is a non-profit corporation.
  360. <a href="https://www.python.org/psf/donations/">Please donate.</a>
  361. <br />
  362. <br />
  363. Last updated on Apr 09, 2024 (13:47 UTC).
  364. <a href="/bugs.html">Found a bug</a>?
  365. <br />
  366. Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 7.2.6.
  367. </div>
  368. </body>
  369. </html>
上海开阖软件有限公司 沪ICP备12045867号-1