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

Skip to content

Commit dd7ca6d

Browse files
committed
[po] auto sync bot
1 parent 8189cf9 commit dd7ca6d

5 files changed

Lines changed: 2891 additions & 2887 deletions

File tree

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.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-06-24 13:40+0900\n"
11+
"POT-Creation-Date: 2018-07-08 13:49+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1414
"MIME-Version: 1.0\n"
@@ -596,12 +596,12 @@ msgid ""
596596
msgstr ""
597597

598598
#: ../../faq/design.rst:474
599-
msgid "How are lists implemented?"
599+
msgid "How are lists implemented in CPython?"
600600
msgstr ""
601601

602602
#: ../../faq/design.rst:476
603603
msgid ""
604-
"Python's lists are really variable-length arrays, not Lisp-style linked "
604+
"CPython's lists are really variable-length arrays, not Lisp-style linked "
605605
"lists. The implementation uses a contiguous array of references to other "
606606
"objects, and keeps a pointer to this array and the array's length in a list "
607607
"head structure."
@@ -622,13 +622,13 @@ msgid ""
622622
msgstr ""
623623

624624
#: ../../faq/design.rst:490
625-
msgid "How are dictionaries implemented?"
625+
msgid "How are dictionaries implemented in CPython?"
626626
msgstr ""
627627

628628
#: ../../faq/design.rst:492
629629
msgid ""
630-
"Python's dictionaries are implemented as resizable hash tables. Compared to"
631-
" B-trees, this gives better performance for lookup (the most common "
630+
"CPython's dictionaries are implemented as resizable hash tables. Compared "
631+
"to B-trees, this gives better performance for lookup (the most common "
632632
"operation by far) under most circumstances, and the implementation is "
633633
"simpler."
634634
msgstr ""

library/logging.po

Lines changed: 37 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-06-26 13:41+0900\n"
11+
"POT-Creation-Date: 2018-07-08 13:49+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1414
"MIME-Version: 1.0\n"
@@ -1638,25 +1638,24 @@ msgid ""
16381638
msgstr ""
16391639

16401640
#: ../../library/logging.rst:1172
1641-
msgid "The ``style`` argument was added."
1641+
msgid "The *style* argument was added."
16421642
msgstr ""
16431643

16441644
#: ../../library/logging.rst:1175
16451645
msgid ""
1646-
"The ``handlers`` argument was added. Additional checks were added to catch "
1647-
"situations where incompatible arguments are specified (e.g. ``handlers`` "
1648-
"together with ``stream`` or ``filename``, or ``stream`` together with "
1649-
"``filename``)."
1646+
"The *handlers* argument was added. Additional checks were added to catch "
1647+
"situations where incompatible arguments are specified (e.g. *handlers* "
1648+
"together with *stream* or *filename*, or *stream* together with *filename*)."
16501649
msgstr ""
16511650

1652-
#: ../../library/logging.rst:1184
1651+
#: ../../library/logging.rst:1183
16531652
msgid ""
16541653
"Informs the logging system to perform an orderly shutdown by flushing and "
16551654
"closing all handlers. This should be called at application exit and no "
16561655
"further use of the logging system should be made after this call."
16571656
msgstr ""
16581657

1659-
#: ../../library/logging.rst:1191
1658+
#: ../../library/logging.rst:1190
16601659
msgid ""
16611660
"Tells the logging system to use the class *klass* when instantiating a "
16621661
"logger. The class should define :meth:`__init__` such that only a name "
@@ -1666,84 +1665,84 @@ msgid ""
16661665
"behavior."
16671666
msgstr ""
16681667

1669-
#: ../../library/logging.rst:1200
1668+
#: ../../library/logging.rst:1199
16701669
msgid "Set a callable which is used to create a :class:`LogRecord`."
16711670
msgstr ""
16721671

1673-
#: ../../library/logging.rst:1202
1672+
#: ../../library/logging.rst:1201
16741673
msgid "The factory callable to be used to instantiate a log record."
16751674
msgstr ""
16761675

1677-
#: ../../library/logging.rst:1204
1676+
#: ../../library/logging.rst:1203
16781677
msgid ""
16791678
"This function has been provided, along with :func:`getLogRecordFactory`, to "
16801679
"allow developers more control over how the :class:`LogRecord` representing a"
16811680
" logging event is constructed."
16821681
msgstr ""
16831682

1684-
#: ../../library/logging.rst:1209
1683+
#: ../../library/logging.rst:1208
16851684
msgid "The factory has the following signature:"
16861685
msgstr ""
16871686

1688-
#: ../../library/logging.rst:1211
1687+
#: ../../library/logging.rst:1210
16891688
msgid ""
16901689
"``factory(name, level, fn, lno, msg, args, exc_info, func=None, sinfo=None, "
16911690
"**kwargs)``"
16921691
msgstr ""
16931692

1694-
#: ../../library/logging.rst:1213
1693+
#: ../../library/logging.rst:1212
16951694
msgid "The logger name."
16961695
msgstr ""
16971696

16981697
#: ../../library/logging.rst:0
16991698
msgid "level"
17001699
msgstr ""
17011700

1702-
#: ../../library/logging.rst:1214
1701+
#: ../../library/logging.rst:1213
17031702
msgid "The logging level (numeric)."
17041703
msgstr ""
17051704

17061705
#: ../../library/logging.rst:0
17071706
msgid "fn"
17081707
msgstr ""
17091708

1710-
#: ../../library/logging.rst:1215
1709+
#: ../../library/logging.rst:1214
17111710
msgid "The full pathname of the file where the logging call was made."
17121711
msgstr ""
17131712

17141713
#: ../../library/logging.rst:0
17151714
msgid "lno"
17161715
msgstr ""
17171716

1718-
#: ../../library/logging.rst:1216
1717+
#: ../../library/logging.rst:1215
17191718
msgid "The line number in the file where the logging call was made."
17201719
msgstr ""
17211720

1722-
#: ../../library/logging.rst:1217
1721+
#: ../../library/logging.rst:1216
17231722
msgid "The logging message."
17241723
msgstr ""
17251724

1726-
#: ../../library/logging.rst:1218
1725+
#: ../../library/logging.rst:1217
17271726
msgid "The arguments for the logging message."
17281727
msgstr ""
17291728

1730-
#: ../../library/logging.rst:1219
1729+
#: ../../library/logging.rst:1218
17311730
msgid "An exception tuple, or ``None``."
17321731
msgstr ""
17331732

17341733
#: ../../library/logging.rst:0
17351734
msgid "func"
17361735
msgstr ""
17371736

1738-
#: ../../library/logging.rst:1220
1737+
#: ../../library/logging.rst:1219
17391738
msgid "The name of the function or method which invoked the logging call."
17401739
msgstr ""
17411740

17421741
#: ../../library/logging.rst:0
17431742
msgid "sinfo"
17441743
msgstr ""
17451744

1746-
#: ../../library/logging.rst:1222
1745+
#: ../../library/logging.rst:1221
17471746
msgid ""
17481747
"A stack traceback such as is provided by :func:`traceback.print_stack`, "
17491748
"showing the call hierarchy."
@@ -1753,15 +1752,15 @@ msgstr ""
17531752
msgid "kwargs"
17541753
msgstr ""
17551754

1756-
#: ../../library/logging.rst:1224
1755+
#: ../../library/logging.rst:1223
17571756
msgid "Additional keyword arguments."
17581757
msgstr ""
17591758

1760-
#: ../../library/logging.rst:1228
1759+
#: ../../library/logging.rst:1227
17611760
msgid "Module-Level Attributes"
17621761
msgstr ""
17631762

1764-
#: ../../library/logging.rst:1232
1763+
#: ../../library/logging.rst:1231
17651764
msgid ""
17661765
"A \"handler of last resort\" is available through this attribute. This is a "
17671766
":class:`StreamHandler` writing to ``sys.stderr`` with a level of "
@@ -1772,22 +1771,22 @@ msgid ""
17721771
"for some reason, ``lastResort`` can be set to ``None``."
17731772
msgstr ""
17741773

1775-
#: ../../library/logging.rst:1243
1774+
#: ../../library/logging.rst:1242
17761775
msgid "Integration with the warnings module"
17771776
msgstr ""
17781777

1779-
#: ../../library/logging.rst:1245
1778+
#: ../../library/logging.rst:1244
17801779
msgid ""
17811780
"The :func:`captureWarnings` function can be used to integrate :mod:`logging`"
17821781
" with the :mod:`warnings` module."
17831782
msgstr ""
17841783

1785-
#: ../../library/logging.rst:1250
1784+
#: ../../library/logging.rst:1249
17861785
msgid ""
17871786
"This function is used to turn the capture of warnings by logging on and off."
17881787
msgstr ""
17891788

1790-
#: ../../library/logging.rst:1253
1789+
#: ../../library/logging.rst:1252
17911790
msgid ""
17921791
"If *capture* is ``True``, warnings issued by the :mod:`warnings` module will"
17931792
" be redirected to the logging system. Specifically, a warning will be "
@@ -1796,46 +1795,46 @@ msgid ""
17961795
":const:`WARNING`."
17971796
msgstr ""
17981797

1799-
#: ../../library/logging.rst:1258
1798+
#: ../../library/logging.rst:1257
18001799
msgid ""
18011800
"If *capture* is ``False``, the redirection of warnings to the logging system"
18021801
" will stop, and warnings will be redirected to their original destinations "
18031802
"(i.e. those in effect before ``captureWarnings(True)`` was called)."
18041803
msgstr ""
18051804

1806-
#: ../../library/logging.rst:1266
1805+
#: ../../library/logging.rst:1265
18071806
msgid "Module :mod:`logging.config`"
18081807
msgstr ""
18091808

1810-
#: ../../library/logging.rst:1266
1809+
#: ../../library/logging.rst:1265
18111810
msgid "Configuration API for the logging module."
18121811
msgstr ""
18131812

1814-
#: ../../library/logging.rst:1269
1813+
#: ../../library/logging.rst:1268
18151814
msgid "Module :mod:`logging.handlers`"
18161815
msgstr ""
18171816

1818-
#: ../../library/logging.rst:1269
1817+
#: ../../library/logging.rst:1268
18191818
msgid "Useful handlers included with the logging module."
18201819
msgstr ""
18211820

1822-
#: ../../library/logging.rst:1273
1821+
#: ../../library/logging.rst:1272
18231822
msgid ":pep:`282` - A Logging System"
18241823
msgstr ""
18251824

1826-
#: ../../library/logging.rst:1272
1825+
#: ../../library/logging.rst:1271
18271826
msgid ""
18281827
"The proposal which described this feature for inclusion in the Python "
18291828
"standard library."
18301829
msgstr ""
18311830

1832-
#: ../../library/logging.rst:1278
1831+
#: ../../library/logging.rst:1277
18331832
msgid ""
18341833
"`Original Python logging package <https://www.red-"
18351834
"dove.com/python_logging.html>`_"
18361835
msgstr ""
18371836

1838-
#: ../../library/logging.rst:1276
1837+
#: ../../library/logging.rst:1275
18391838
msgid ""
18401839
"This is the original source for the :mod:`logging` package. The version of "
18411840
"the package available from this site is suitable for use with Python 1.5.2, "

library/ssl.po

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-06-20 13:46+0900\n"
11+
"POT-Creation-Date: 2018-07-08 13:49+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: Fred <[email protected]>, 2018\n"
1414
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -353,7 +353,7 @@ msgstr ""
353353
msgid ""
354354
"The *ciphers* parameter sets the available ciphers for this SSL object. It "
355355
"should be a string in the `OpenSSL cipher list format "
356-
"<https://wiki.openssl.org/index.php/Manual:Ciphers(1)#CIPHER_LIST_FORMAT>`_."
356+
"<https://www.openssl.org/docs/manmaster/man1/ciphers.html>`_."
357357
msgstr ""
358358

359359
#: ../../library/ssl.rst:226
@@ -1692,10 +1692,9 @@ msgstr ""
16921692
msgid ""
16931693
"Set the available ciphers for sockets created with this context. It should "
16941694
"be a string in the `OpenSSL cipher list format "
1695-
"<https://wiki.openssl.org/index.php/Manual:Ciphers(1)#CIPHER_LIST_FORMAT>`_."
1696-
" If no cipher can be selected (because compile-time options or other "
1697-
"configuration forbids use of all the specified ciphers), an "
1698-
":class:`SSLError` will be raised."
1695+
"<https://www.openssl.org/docs/manmaster/man1/ciphers.html>`_. If no cipher "
1696+
"can be selected (because compile-time options or other configuration forbids"
1697+
" use of all the specified ciphers), an :class:`SSLError` will be raised."
16991698
msgstr ""
17001699

17011700
#: ../../library/ssl.rst:1474

library/stdtypes.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.6\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-06-26 13:41+0900\n"
11+
"POT-Creation-Date: 2018-07-08 13:49+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: Donghui zhai <[email protected]>, 2018\n"
1414
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -3021,7 +3021,7 @@ msgid ""
30213021
"While bytes literals and representations are based on ASCII text, bytes "
30223022
"objects actually behave like immutable sequences of integers, with each "
30233023
"value in the sequence restricted such that ``0 <= x < 256`` (attempts to "
3024-
"violate this restriction will trigger :exc:`ValueError`. This is done "
3024+
"violate this restriction will trigger :exc:`ValueError`). This is done "
30253025
"deliberately to emphasise that while many binary formats include ASCII based"
30263026
" elements and can be usefully manipulated with some text-oriented "
30273027
"algorithms, this is not generally the case for arbitrary binary data "

0 commit comments

Comments
 (0)