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

Skip to content

Commit 523013c

Browse files
[po] auto sync
1 parent 1fae604 commit 523013c

1 file changed

Lines changed: 7 additions & 8 deletions

File tree

tutorial/modules.po

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ msgid ""
389389
"standard list operations::"
390390
msgstr ""
391391
"变量 ``sys.path`` 是字符串列表,用于确定解释器的模块搜索路径。该变量以环境变量 :envvar:`PYTHONPATH` "
392-
"提取的默认路径进行初始化,如未设置 :envvar:`PYTHONPATH`,则使用内置的默认路径。可以用标准的列表操作修改该变量:"
392+
"提取的默认路径进行初始化,如未设置 :envvar:`PYTHONPATH`,则使用内置的默认路径。可以用标准列表操作修改该变量:"
393393

394394
#: ../../tutorial/modules.rst:300
395395
msgid "The :func:`dir` Function"
@@ -399,24 +399,24 @@ msgstr ":func:`dir` 函数"
399399
msgid ""
400400
"The built-in function :func:`dir` is used to find out which names a module "
401401
"defines. It returns a sorted list of strings::"
402-
msgstr "内置函数 :func:`dir` 用于查找模块定义的名称。 它返回一个排序过的字符串列表::"
402+
msgstr "内置函数 :func:`dir` 用于查找模块定义的名称。返回经过排序的字符串列表:"
403403

404404
#: ../../tutorial/modules.rst:331
405405
msgid ""
406406
"Without arguments, :func:`dir` lists the names you have defined currently::"
407-
msgstr "如果没有参数,:func:`dir` 会列出你当前定义的名称::"
407+
msgstr "没有参数时,:func:`dir` 列出当前定义的名称:"
408408

409409
#: ../../tutorial/modules.rst:339
410410
msgid ""
411411
"Note that it lists all types of names: variables, modules, functions, etc."
412-
msgstr "注意:它列出所有类型的名称:变量,模块,函数,等等。"
412+
msgstr "注意,该函数列出所有类型的名称:变量、模块、函数等。"
413413

414414
#: ../../tutorial/modules.rst:343
415415
msgid ""
416416
":func:`dir` does not list the names of built-in functions and variables. If"
417417
" you want a list of those, they are defined in the standard module "
418418
":mod:`builtins`::"
419-
msgstr ":func:`dir` 不会列出内置函数和变量的名称。如果你想要这些,它们的定义是在标准模块 :mod:`builtins` 中::"
419+
msgstr ":func:`dir` 不会列出内置函数和变量的名称。这些内容的定义在标准模块 :mod:`builtins` 里:"
420420

421421
#: ../../tutorial/modules.rst:382
422422
msgid "Packages"
@@ -432,9 +432,8 @@ msgid ""
432432
" authors of multi-module packages like NumPy or Pillow from having to worry "
433433
"about each other's module names."
434434
msgstr ""
435-
"包是一种通过用“带点号的模块名”来构造 Python 模块命名空间的方法。 例如,模块名 :mod:`A.B` 表示 ``A`` 包中名为 ``B`` "
436-
"的子模块。正如模块的使用使得不同模块的作者不必担心彼此的全局变量名称一样,使用加点的模块名可以使得 NumPy 或 Pillow "
437-
"等多模块软件包的作者不必担心彼此的模块名称一样。"
435+
"包是一种用“带点号的模块名”构造 Python 模块命名空间的方法。例如,模块名 :mod:`A.B` 表示 ``A`` 包中名为 ``B`` "
436+
"的子模块。正如模块可以区分不同模块之间的全局变量名称一样,使用点号模块名可以区分 NumPy 或 Pillow 等不同多模块包之间的模块名称。"
438437

439438
#: ../../tutorial/modules.rst:392
440439
msgid ""

0 commit comments

Comments
 (0)