Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3d6be3f

Browse files
sync with cpython 54ea1279
1 parent 6284a89 commit 3d6be3f

38 files changed

+694
-653
lines changed

about.po

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.10\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2022-05-21 17:35+0000\n"
17+
"POT-Creation-Date: 2022-08-05 00:19+0000\n"
1818
"PO-Revision-Date: 2022-05-12 00:11+0800\n"
1919
"Last-Translator: hsiao yi <[email protected]>\n"
2020
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -61,8 +61,9 @@ msgstr ""
6161
"Fred L. Drake, Jr.,原始 Python 文件工具集的創造者以及一大部份內容的作者;"
6262

6363
#: ../../about.rst:24
64+
#, fuzzy
6465
msgid ""
65-
"the `Docutils <http://docutils.sourceforge.net/>`_ project for creating "
66+
"the `Docutils <https://docutils.sourceforge.io/>`_ project for creating "
6667
"reStructuredText and the Docutils suite;"
6768
msgstr ""
6869
"創造 reStructuredText 和 Docutils 工具組的 `Docutils <http://docutils."

extending/index.po

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.10\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-06-26 18:54+0800\n"
11+
"POT-Creation-Date: 2022-08-05 00:19+0000\n"
1212
"PO-Revision-Date: 2021-07-06 22:18+0800\n"
1313
"Last-Translator: Adrian Liaw <[email protected]>\n"
1414
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -50,8 +50,8 @@ msgid ""
5050
msgstr ""
5151
"這份說明文件假設您具備 Python 的基礎知識。關於此語言的非正式介紹,請參閱 :"
5252
"ref:`tutorial-index`\\\\ :ref:`reference-index`\\ 給予此語言更為正式的定"
53-
"義。\\ :ref:`library-index` 記錄了賦予此語言廣泛應用範圍的物件型別、函式"
54-
"(內建的和以 Python 編寫的)模組。"
53+
"義。\\ :ref:`library-index` 記錄了賦予此語言廣泛應用範圍的物件型別、函式與"
54+
"(內建的和以 Python 編寫的)模組。"
5555

5656
#: ../../extending/index.rst:21
5757
msgid ""
@@ -65,10 +65,11 @@ msgid "Recommended third party tools"
6565
msgstr "推薦的第三方工具"
6666

6767
#: ../../extending/index.rst:28
68+
#, fuzzy
6869
msgid ""
6970
"This guide only covers the basic tools for creating extensions provided as "
70-
"part of this version of CPython. Third party tools like `Cython <http://"
71-
"cython.org/>`_, `cffi <https://cffi.readthedocs.io>`_, `SWIG <http://www."
71+
"part of this version of CPython. Third party tools like `Cython <https://"
72+
"cython.org/>`_, `cffi <https://cffi.readthedocs.io>`_, `SWIG <https://www."
7273
"swig.org>`_ and `Numba <https://numba.pydata.org/>`_ offer both simpler and "
7374
"more sophisticated approaches to creating C and C++ extensions for Python."
7475
msgstr ""
@@ -122,5 +123,5 @@ msgid ""
122123
"details involved in doing that successfully."
123124
msgstr ""
124125
"有時候,相較於建立一個擴充,使其在 Python 直譯器中可作為主應用程式運行,還不"
125-
"如將 CPython 運行環境嵌入至一個更大的應用程式中更可取。本節將涵蓋一些要"
126-
"成功完成此任務所涉及的細節。"
126+
"如將 CPython 運行環境嵌入至一個更大的應用程式中更可取。本節將涵蓋一些要成功完"
127+
"成此任務所涉及的細節。"

faq/design.po

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.10\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2022-07-06 00:17+0000\n"
11+
"POT-Creation-Date: 2022-08-05 00:19+0000\n"
1212
"PO-Revision-Date: 2018-05-23 14:35+0000\n"
1313
"Last-Translator: Adrian Liaw <[email protected]>\n"
1414
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -425,8 +425,8 @@ msgstr "Python可以被編譯成機器語言或C語言或其他種語言嗎?"
425425

426426
#: ../../faq/design.rst:324
427427
msgid ""
428-
"`Cython <http://cython.org/>`_ compiles a modified version of Python with "
429-
"optional annotations into C extensions. `Nuitka <http://www.nuitka.net/>`_ "
428+
"`Cython <https://cython.org/>`_ compiles a modified version of Python with "
429+
"optional annotations into C extensions. `Nuitka <https://www.nuitka.net/>`_ "
430430
"is an up-and-coming compiler of Python into C++ code, aiming to support the "
431431
"full Python language."
432432
msgstr ""
@@ -448,9 +448,9 @@ msgstr ""
448448

449449
#: ../../faq/design.rst:341
450450
msgid ""
451-
"Other implementations (such as `Jython <http://www.jython.org>`_ or `PyPy "
452-
"<http://www.pypy.org>`_), however, can rely on a different mechanism such as "
453-
"a full-blown garbage collector. This difference can cause some subtle "
451+
"Other implementations (such as `Jython <https://www.jython.org>`_ or `PyPy "
452+
"<https://www.pypy.org>`_), however, can rely on a different mechanism such "
453+
"as a full-blown garbage collector. This difference can cause some subtle "
454454
"porting problems if your Python code depends on the behavior of the "
455455
"reference counting implementation."
456456
msgstr ""

faq/extending.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.10\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2022-01-27 07:52+0000\n"
10+
"POT-Creation-Date: 2022-08-05 00:19+0000\n"
1111
"PO-Revision-Date: 2018-05-23 14:35+0000\n"
1212
"Last-Translator: Adrian Liaw <[email protected]>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -65,7 +65,7 @@ msgstr ""
6565

6666
#: ../../faq/extending.rst:44
6767
msgid ""
68-
"`Cython <http://cython.org>`_ and its relative `Pyrex <https://www.cosc."
68+
"`Cython <https://cython.org>`_ and its relative `Pyrex <https://www.cosc."
6969
"canterbury.ac.nz/greg.ewing/python/Pyrex/>`_ are compilers that accept a "
7070
"slightly modified form of Python and generate the corresponding C code. "
7171
"Cython and Pyrex make it possible to write an extension without having to "
@@ -76,9 +76,9 @@ msgstr ""
7676
msgid ""
7777
"If you need to interface to some C or C++ library for which no Python "
7878
"extension currently exists, you can try wrapping the library's data types "
79-
"and functions with a tool such as `SWIG <http://www.swig.org>`_. `SIP "
79+
"and functions with a tool such as `SWIG <https://www.swig.org>`_. `SIP "
8080
"<https://riverbankcomputing.com/software/sip/intro>`__, `CXX <http://cxx."
81-
"sourceforge.net/>`_ `Boost <http://www.boost.org/libs/python/doc/index."
81+
"sourceforge.net/>`_ `Boost <https://www.boost.org/libs/python/doc/index."
8282
"html>`_, or `Weave <https://github.com/scipy/weave>`_ are also alternatives "
8383
"for wrapping C++ libraries."
8484
msgstr ""
@@ -358,7 +358,7 @@ msgstr ""
358358

359359
#: ../../faq/extending.rst:289
360360
msgid ""
361-
"The Boost Python Library (BPL, http://www.boost.org/libs/python/doc/index."
361+
"The Boost Python Library (BPL, https://www.boost.org/libs/python/doc/index."
362362
"html) provides a way of doing this from C++ (i.e. you can inherit from an "
363363
"extension class written in C++ using the BPL)."
364364
msgstr ""

faq/general.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ msgid ""
99
msgstr ""
1010
"Project-Id-Version: Python 3.10\n"
1111
"Report-Msgid-Bugs-To: \n"
12-
"POT-Creation-Date: 2021-10-26 16:47+0000\n"
12+
"POT-Creation-Date: 2022-08-05 00:19+0000\n"
1313
"PO-Revision-Date: 2018-05-23 14:35+0000\n"
1414
"Last-Translator: Adrian Liaw <[email protected]>\n"
1515
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -528,8 +528,8 @@ msgstr ""
528528
#: ../../faq/general.rst:337
529529
msgid ""
530530
"High-profile Python projects include `the Mailman mailing list manager "
531-
"<http://www.list.org>`_ and `the Zope application server <http://www.zope."
532-
"org>`_. Several Linux distributions, most notably `Red Hat <https://www."
531+
"<http://www.list.org>`_ and `the Zope application server <https://www.zope."
532+
"dev>`_. Several Linux distributions, most notably `Red Hat <https://www."
533533
"redhat.com>`_, have written part or all of their installer and system "
534534
"administration software in Python. Companies that use Python internally "
535535
"include Google, Yahoo, and Lucasfilm Ltd."

faq/programming.po

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ msgid ""
1010
msgstr ""
1111
"Project-Id-Version: Python 3.10\n"
1212
"Report-Msgid-Bugs-To: \n"
13-
"POT-Creation-Date: 2022-07-06 00:17+0000\n"
13+
"POT-Creation-Date: 2022-08-05 00:19+0000\n"
1414
"PO-Revision-Date: 2018-05-23 14:35+0000\n"
1515
"Last-Translator: Adrian Liaw <[email protected]>\n"
1616
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -173,7 +173,8 @@ msgid "`Nuitka <https://nuitka.net/>`_ (Cross-platform)"
173173
msgstr "`Nuitka <https://nuitka.net/>`_\\ (跨平台)"
174174

175175
#: ../../faq/programming.rst:98
176-
msgid "`PyInstaller <http://www.pyinstaller.org/>`_ (Cross-platform)"
176+
#, fuzzy
177+
msgid "`PyInstaller <https://pyinstaller.org/>`_ (Cross-platform)"
177178
msgstr "`PyInstaller <http://www.pyinstaller.org/>`_\\ (跨平台)"
178179

179180
#: ../../faq/programming.rst:99
@@ -1207,7 +1208,7 @@ msgstr ""
12071208
#: ../../faq/programming.rst:1068
12081209
msgid ""
12091210
"If you have reached the limit of what pure Python can allow, there are tools "
1210-
"to take you further away. For example, `Cython <http://cython.org>`_ can "
1211+
"to take you further away. For example, `Cython <https://cython.org>`_ can "
12111212
"compile a slightly modified version of Python code into a C extension, and "
12121213
"can be used on many different platforms. Cython can take advantage of "
12131214
"compilation (and optional type annotations) to make your code significantly "

howto/curses.po

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.10\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2022-06-03 00:13+0000\n"
10+
"POT-Creation-Date: 2022-08-05 00:19+0000\n"
1111
"PO-Revision-Date: 2018-05-23 14:36+0000\n"
1212
"Last-Translator: Adrian Liaw <[email protected]>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -710,7 +710,7 @@ msgstr ""
710710

711711
#: ../../howto/curses.rst:540
712712
msgid ""
713-
"`Writing Programs with NCURSES <http://invisible-island.net/ncurses/ncurses-"
713+
"`Writing Programs with NCURSES <https://invisible-island.net/ncurses/ncurses-"
714714
"intro.html>`_: a lengthy tutorial for C programmers."
715715
msgstr ""
716716

@@ -719,8 +719,9 @@ msgid "`The ncurses man page <https://linux.die.net/man/3/ncurses>`_"
719719
msgstr "`ncurses 使用者手冊 <https://linux.die.net/man/3/ncurses>`_"
720720

721721
#: ../../howto/curses.rst:543
722+
#, fuzzy
722723
msgid ""
723-
"`The ncurses FAQ <http://invisible-island.net/ncurses/ncurses.faq.html>`_"
724+
"`The ncurses FAQ <https://invisible-island.net/ncurses/ncurses.faq.html>`_"
724725
msgstr ""
725726
"`ncurses 問答集 <http://invisible-island.net/ncurses/ncurses.faq.html>`_"
726727

@@ -733,7 +734,7 @@ msgstr ""
733734

734735
#: ../../howto/curses.rst:546
735736
msgid ""
736-
"`\"Console Applications with Urwid\" <http://www.pyvideo.org/video/1568/"
737-
"console-applications-with-urwid>`_: video of a PyCon CA 2012 talk "
738-
"demonstrating some applications written using Urwid."
737+
"`\"Console Applications with Urwid\" <https://pyvideo.org/video/1568/console-"
738+
"applications-with-urwid>`_: video of a PyCon CA 2012 talk demonstrating some "
739+
"applications written using Urwid."
739740
msgstr ""

howto/functional.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.10\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2022-07-06 00:17+0000\n"
11+
"POT-Creation-Date: 2022-08-05 00:19+0000\n"
1212
"PO-Revision-Date: 2018-05-23 14:36+0000\n"
1313
"Last-Translator: Adrian Liaw <[email protected]>\n"
1414
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -1317,7 +1317,7 @@ msgstr ""
13171317

13181318
#: ../../howto/functional.rst:1218
13191319
msgid ""
1320-
"http://www.defmacro.org/ramblings/fp.html: A general introduction to "
1320+
"https://www.defmacro.org/ramblings/fp.html: A general introduction to "
13211321
"functional programming that uses Java examples and has a lengthy historical "
13221322
"introduction."
13231323
msgstr ""
@@ -1343,7 +1343,7 @@ msgstr ""
13431343

13441344
#: ../../howto/functional.rst:1231
13451345
msgid ""
1346-
"http://gnosis.cx/TPiP/: The first chapter of David Mertz's book :title-"
1346+
"https://gnosis.cx/TPiP/: The first chapter of David Mertz's book :title-"
13471347
"reference:`Text Processing in Python` discusses functional programming for "
13481348
"text processing, in the section titled \"Utilizing Higher-Order Functions in "
13491349
"Text Processing\"."

howto/unicode.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.10\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2021-10-26 16:47+0000\n"
10+
"POT-Creation-Date: 2022-08-05 00:19+0000\n"
1111
"PO-Revision-Date: 2018-05-23 14:37+0000\n"
1212
"Last-Translator: Adrian Liaw <[email protected]>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -251,7 +251,7 @@ msgstr ""
251251
#: ../../howto/unicode.rst:169
252252
msgid ""
253253
"To help understand the standard, Jukka Korpela has written `an introductory "
254-
"guide <http://jkorpela.fi/unicode/guide.html>`_ to reading the Unicode "
254+
"guide <https://jkorpela.fi/unicode/guide.html>`_ to reading the Unicode "
255255
"character tables."
256256
msgstr ""
257257

@@ -832,7 +832,7 @@ msgstr ""
832832

833833
#: ../../howto/unicode.rst:737
834834
msgid ""
835-
"One section of `Mastering Python 3 Input/Output <http://pyvideo.org/"
835+
"One section of `Mastering Python 3 Input/Output <https://pyvideo.org/"
836836
"video/289/pycon-2010--mastering-python-3-i-o>`_, a PyCon 2010 talk by David "
837837
"Beazley, discusses text processing and binary data handling."
838838
msgstr ""
@@ -848,7 +848,7 @@ msgstr ""
848848

849849
#: ../../howto/unicode.rst:747
850850
msgid ""
851-
"`The Guts of Unicode in Python <http://pyvideo.org/video/1768/the-guts-of-"
851+
"`The Guts of Unicode in Python <https://pyvideo.org/video/1768/the-guts-of-"
852852
"unicode-in-python>`_ is a PyCon 2013 talk by Benjamin Peterson that "
853853
"discusses the internal Unicode representation in Python 3.3."
854854
msgstr ""

howto/urllib2.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.10\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2022-07-06 00:17+0000\n"
11+
"POT-Creation-Date: 2022-08-05 00:19+0000\n"
1212
"PO-Revision-Date: 2022-06-27 09:36+0800\n"
1313
"Last-Translator: Adrian Liaw <[email protected]>\n"
1414
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -375,7 +375,7 @@ msgstr ""
375375
#: ../../howto/urllib2.rst:413
376376
msgid ""
377377
"Typical headers include 'Content-length', 'Content-type', and so on. See the "
378-
"`Quick Reference to HTTP Headers <http://jkorpela.fi/http.html>`_ for a "
378+
"`Quick Reference to HTTP Headers <https://jkorpela.fi/http.html>`_ for a "
379379
"useful listing of HTTP headers with brief explanations of their meaning and "
380380
"use."
381381
msgstr ""

install/index.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.10\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2022-07-06 00:17+0000\n"
11+
"POT-Creation-Date: 2022-08-05 00:19+0000\n"
1212
"PO-Revision-Date: 2018-05-23 14:37+0000\n"
1313
"Last-Translator: Adrian Liaw <[email protected]>\n"
1414
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -1449,8 +1449,8 @@ msgstr ""
14491449

14501450
#: ../../install/index.rst:1065
14511451
msgid ""
1452-
"`Building Python modules on MS Windows platform with MinGW <http://old.zope."
1453-
"org/Members/als/tips/win32_mingw_modules>`_"
1452+
"`Building Python modules on MS Windows platform with MinGW <https://old.zope."
1453+
"dev/Members/als/tips/win32_mingw_modules>`_"
14541454
msgstr ""
14551455

14561456
#: ../../install/index.rst:1066

library/difflib.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.10\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2021-09-13 00:11+0000\n"
10+
"POT-Creation-Date: 2022-08-05 00:19+0000\n"
1111
"PO-Revision-Date: 2016-11-19 00:29+0000\n"
1212
"Last-Translator: Liang-Bo Wang <[email protected]>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -406,14 +406,14 @@ msgstr ""
406406

407407
#: ../../library/difflib.rst:357
408408
msgid ""
409-
"`Pattern Matching: The Gestalt Approach <http://www.drdobbs.com/database/"
409+
"`Pattern Matching: The Gestalt Approach <https://www.drdobbs.com/database/"
410410
"pattern-matching-the-gestalt-approach/184407970>`_"
411411
msgstr ""
412412

413413
#: ../../library/difflib.rst:357
414414
msgid ""
415415
"Discussion of a similar algorithm by John W. Ratcliff and D. E. Metzener. "
416-
"This was published in `Dr. Dobb's Journal <http://www.drdobbs.com/>`_ in "
416+
"This was published in `Dr. Dobb's Journal <https://www.drdobbs.com/>`_ in "
417417
"July, 1988."
418418
msgstr ""
419419

library/gettext.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ msgid ""
77
msgstr ""
88
"Project-Id-Version: Python 3.10\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2020-06-20 18:08+0800\n"
10+
"POT-Creation-Date: 2022-08-05 00:19+0000\n"
1111
"PO-Revision-Date: 2018-05-23 16:02+0000\n"
1212
"Last-Translator: Adrian Liaw <[email protected]>\n"
1313
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -601,7 +601,7 @@ msgid ""
601601
"original GNU :program:`gettext` only supported C or C++ source code but its "
602602
"extended version :program:`xgettext` scans code written in a number of "
603603
"languages, including Python, to find strings marked as translatable. `Babel "
604-
"<http://babel.pocoo.org/>`__ is a Python internationalization library that "
604+
"<https://babel.pocoo.org/>`__ is a Python internationalization library that "
605605
"includes a :file:`pybabel` script to extract and compile message catalogs. "
606606
"François Pinard's program called :program:`xpot` does a similar job and is "
607607
"available as part of his `po-utils package <https://github.com/pinard/po-"

library/json.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.10\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2022-05-21 17:35+0000\n"
11+
"POT-Creation-Date: 2022-08-05 00:19+0000\n"
1212
"PO-Revision-Date: 2018-05-23 16:04+0000\n"
1313
"Last-Translator: Adrian Liaw <[email protected]>\n"
1414
"Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-"
@@ -223,7 +223,7 @@ msgid ""
223223
"*object_hook* is an optional function that will be called with the result of "
224224
"any object literal decoded (a :class:`dict`). The return value of "
225225
"*object_hook* will be used instead of the :class:`dict`. This feature can "
226-
"be used to implement custom decoders (e.g. `JSON-RPC <http://www.jsonrpc."
226+
"be used to implement custom decoders (e.g. `JSON-RPC <https://www.jsonrpc."
227227
"org>`_ class hinting)."
228228
msgstr ""
229229

@@ -403,7 +403,7 @@ msgid ""
403403
"*object_hook*, if specified, will be called with the result of every JSON "
404404
"object decoded and its return value will be used in place of the given :"
405405
"class:`dict`. This can be used to provide custom deserializations (e.g. to "
406-
"support `JSON-RPC <http://www.jsonrpc.org>`_ class hinting)."
406+
"support `JSON-RPC <https://www.jsonrpc.org>`_ class hinting)."
407407
msgstr ""
408408

409409
#: ../../library/json.rst:331

0 commit comments

Comments
 (0)