• Home
  • Raw
  • Download

Lines Matching full:n

3n**********************\n\nAssert statements are a convenient way to insert debugging assertions\n…
4n*********************\n\nAssignment statements are used to (re)bind names to values and to\nmodif…
5n*******************\n\nAn identifier occurring as an atom is a name. See section Identifiers\nan…
6n********\n\nPython supports string literals and various numeric literals:\n\n literal ::= strin…
7n****************************\n\nThe following methods can be defined to customize the meaning of\…
8n********************\n\nAn attribute reference is a primary followed by a period and a name:\n\n
9n*******************************\n\nAugmented assignment is the combination, in a single statement…
10n****************************\n\nThe binary arithmetic operations have the conventional priority\n…
11n*************************\n\nEach of the three bitwise operations has a different priority level:…
12n************\n\nCode objects are used by the implementation to represent "pseudo-\ncompiled" exec…
13n*******************\n\nThis object is used by extended slice notation (see Slicings). It\nsuppor…
14n************\n\nFile objects are implemented using C\'s "stdio" package and can be\ncreated with …
15n***************\n\nThis object is returned by functions that don\'t explicitly return a\nvalue. …
16n************\n\nType objects represent the various object types. An object\'s type is\naccessed …
17n******************\n\n or_test ::= and_test | or_test "or" and_test\n and_test ::= not_test …
18n*********************\n\n break_stmt ::= "break"\n\n"break" may only occur syntactically nested…
19n**************************\n\nobject.__call__(self[, args...])\n\n Called when the instance is …
20n*****\n\nA call calls a callable object (e.g., a *function*) with a possibly\nempty series of *ar…
21n*****************\n\nA class definition defines a class object (see section The standard\ntype hi…
22n***********\n\nUnlike C, all comparison operations in Python have the same priority,\nwhich is lo…
23n*******************\n\nCompound statements contain (groups of) other statements; they affect\nor …
24n*******************************\n\nNew in version 2.5.\n\nA *context manager* is an object that d…
25n************************\n\n continue_stmt ::= "continue"\n\n"continue" may only occur syntacti…
26n**********************\n\nWhen a description of an arithmetic operator below uses the phrase\n"th…
27n*******************\n\nobject.__new__(cls[, ...])\n\n Called to create a new instance of class …
28n"pdb" --- The Python Debugger\n*****************************\n\n**Source code:** Lib/pdb.py\n\n==…
29n*******************\n\n del_stmt ::= "del" target_list\n\nDeletion is recursively defined very …
30n*******************\n\nA dictionary display is a possibly empty series of key/datum pairs\nenclos…
31n*********************************\n\nThere are several cases where Python statements are illegal …
32n******************\n\nThe "if" statement is used for conditional execution:\n\n if_stmt ::= "if…
33n**********\n\nExceptions are a means of breaking out of the normal flow of control\nof a code blo…
34n********************\n\n exec_stmt ::= "exec" or_expr ["in" expression ["," expression]]\n\nThi…
35n***************\n\n\nNaming and binding\n==================\n\n*Names* refer to objects. Names a…
36n****************\n\n expression_list ::= expression ( "," expression )* [","]\n\nAn expression …
37n***********************\n\nFloating point literals are described by the following lexical\ndefini…
38n*******************\n\nThe "for" statement is used to iterate over the elements of a sequence\n(s…
39n********************\n\nThe "str.format()" method and the "Formatter" class share the same\nsynta…
40n********************\n\nA function definition defines a user-defined function object (see\nsectio…
41n**********************\n\n global_stmt ::= "global" identifier ("," identifier)*\n\nThe "global…
42n*******************************\n\nCertain classes of identifiers (besides keywords) have special…
43n************************\n\nIdentifiers (also referred to as *names*) are described by the\nfollo…
44n******************\n\nThe "if" statement is used for conditional execution:\n\n if_stmt ::= "if…
45n******************\n\nImaginary literals are described by the following lexical definitions:\n\n
46n**********************\n\n import_stmt ::= "import" module ["as" name] ( "," module ["as" n…
47n***********\n\nUnlike C, all comparison operations in Python have the same priority,\nwhich is lo…
48n*********************************\n\nInteger and long integer literals are described by the follo…
49n*******\n\n lambda_expr ::= "lambda" [parameter_list]: expression\n old_lambda_expr ::= "…
50n*************\n\nA list display is a possibly empty series of expressions enclosed in\nsquare bra…
51n******************\n\n*Names* refer to objects. Names are introduced by name binding\noperations…
52n****************\n\nThere are four types of numeric literals: plain integers, long\nintegers, flo…
53n***********************\n\nThe following methods can be defined to emulate numeric objects.\nMeth…
54n*************************\n\n*Objects* are Python\'s abstraction for data. All data in a Python\…
55n*******************\n\nThe following table summarizes the operator precedences in Python,\nfrom l…
56n********************\n\n pass_stmt ::= "pass"\n\n"pass" is a null operation --- when it is exec…
57n******************\n\nThe power operator binds more tightly than unary operators on its\nleft; it…
58n*********************\n\n print_stmt ::= "print" ([expression ("," expression)* [","]]\n
59n*********************\n\n raise_stmt ::= "raise" [expression ["," expression ["," expression]]]…
60n**********************\n\n return_stmt ::= "return" [expression_list]\n\n"return" may only occu…
61n*************************\n\nThe following methods can be defined to implement container objects.…
62n*******************\n\nThe shifting operations have lower priority than the arithmetic\noperation…
63n********\n\nA slicing selects a range of items in a sequence object (e.g., a\nstring, tuple or li…
64n******************\n\nThe implementation adds a few special read-only attributes to several\nobje…
65n********************\n\nA class can implement certain operations that are invoked by special\nsyn…
66n**************\n\nBelow are listed the string methods which both 8-bit strings and\nUnicode objec…
67n***************\n\nString literals are described by the following lexical definitions:\n\n stri…
68n*************\n\nA subscription selects an item of a sequence (string, tuple or list)\nor mapping…
69n*******************\n\nAny object can be tested for truth value, for use in an "if" or\n"while" c…
70n*******************\n\nThe "try" statement specifies exception handlers and/or cleanup code\nfor …
71n***************************\n\nBelow is a list of the types that are built into Python. Extensio…
72n*********\n\nFunction objects are created by function definitions. The only\noperation on a func…
73n************************\n\nA *mapping* object maps *hashable* values to arbitrary objects.\nMapp…
74n*******\n\nMethods are functions that are called using the attribute notation.\nThere are two fla…
75n*******\n\nThe only special operation on a module is attribute access: "m.name",\nwhere *m* is a …
76n*************************************************************************************\n\nThere ar…
77n**********************\n\nList and "bytearray" objects support additional operations that allow\n…
78n***************************************\n\nAll unary arithmetic and bitwise operations have the s…
79n*********************\n\nThe "while" statement is used for repeated execution as long as an\nexpr…
80n********************\n\nNew in version 2.5.\n\nThe "with" statement is used to wrap the execution…
81n*********************\n\n yield_stmt ::= yield_expression\n\nThe "yield" statement is only used…