• Home
  • Raw
  • Download

Lines Matching +full:- +full:n

1 # -*- coding: utf-8 -*-
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…
5-identifiers': u'\nIdentifiers (Names)\n*******************\n\nAn identifier occurring as an atom …
6-literals': u"\nLiterals\n********\n\nPython supports string literals and various numeric literals…
7-access': u'\nCustomizing attribute access\n****************************\n\nThe following methods …
8-references': u'\nAttribute references\n********************\n\nAn attribute reference is a primar…
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:…
12-code-objects': u'\nCode Objects\n************\n\nCode objects are used by the implementation to r…
13-ellipsis-object': u'\nThe Ellipsis Object\n*******************\n\nThis object is used by extended…
14-file-objects': u'\nFile Objects\n************\n\nFile objects are implemented using C\'s "stdio" …
15-null-object': u'\nThe Null Object\n***************\n\nThis object is returned by functions that d…
16-type-objects': u'\nType Objects\n************\n\nType objects represent the various object types.…
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…
19-types': u'\nEmulating callable objects\n**************************\n\nobject.__call__(self[, args…
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 …
24-managers': u'\nWith Statement Context Managers\n*******************************\n\nNew in version…
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…
31-features': u'\nInteraction with dynamic features\n*********************************\n\nThere are …
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…
42-classes': u'\nReserved classes of identifiers\n*******************************\n\nCertain classes…
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…
53-types': u'\nEmulating numeric types\n***********************\n\nThe following methods can be defi…
54n*************************\n\n*Objects* are Python\'s abstraction for data. All data in a Python\…
55-summary': u'\nOperator precedence\n*******************\n\nThe following table summarizes the oper…
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…
61-types': u'\nEmulating container types\n*************************\n\nThe following methods can be …
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…
66-methods': u'\nString Methods\n**************\n\nBelow are listed the string methods which both 8-
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…
73--- "dict"\n************************\n\nA *mapping* object maps *hashable* values to arbitrary obj…
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 …
76--- "str", "unicode", "list", "tuple", "bytearray", "buffer", "xrange"\n**************************…
77-mutable': u'\nMutable Sequence Types\n**********************\n\nList and "bytearray" objects supp…
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…