Анимация
JavaScript
|
Главная Библионтека suite: simple stmt NEWLINE INDENT stmt+ DEDENT test: and test: not test: comparison: comp op: expr: xor expr: and expr: shift expr: arith expr: term: factor: power: atom: listmaker: lambdef: trailer: and test (or and test)* lambdef not test (and not test)* not not test comparison expr (comp op expr)* < > == >= <= <> != in not in is is not xor expr ( xor expr)* and expr ( and expr)* shift expr (& shift expr)* arith expr ((<< >>) arith expr)* term ((+ -) term)* factor ((* / %) factor)* (+ - -) factor power atom trailer* (** factor)* ( [testlist] ) [ [listmaker] ] { [dictmaker] } testlist NAME NUMBER STRING+ test ( list for (, test)* [,] ) lambda [varargslist] : test ( [arglist] ) [ subscriptlist ] . NAME subscriptlist: subscript (, subscript)* [,] subscript: . . . test sliceop: exprlist: testlist: dictmaker: [test] : [test] [sliceop] : [test] expr (, expr)* [,] test (, test)* [,] test : test (, test : test)* classdef: arglist: class NAME [( testlist )] : suite (argument ,)* (argument [,] * test [, ** test] ** test) argument: [test =] test list iter: list for: list if: list for list if for exprlist in testlist [list iter] if test [list iter] Указатель модулей anydbm ...................................327 array ....................................252 atexit ...................................200 Bastion .................................354 bisect ...................................251 bsddb ....................................330 calendar ................................419 cgi .......................................355 cmath ....................................247 cmd .......................................417 codecs ...................................232 ConfigParser .......................... 412 cPickle .................................258 cStringIO ...............................231 dbhash ...................................327 dbm .......................................327 dumbdbm .................................327 errno ....................................299 filecmp .................................286 fileinput ...............................409 fnmatch .................................303 gc ........................................198 gdbm .....................................327 getopt ...................................296 getpass .................................295 gettext .................................240 glob .....................................302 gzip .....................................336 htmlentitydefs ........................388 htmllib .................................386 imp .......................................211 locale ...................................236 marshal .................................263 math .....................................245 mimetools ...............................373 MimeWriter .............................374 mmap .....................................315 multifile ...............................376 operator ................................204 os ........................................267 os.path ................................. 280 pdb .......................................340 pickle ...................................258 popen2 ...................................288 pprint ...................................212 profile .................................347 pstats ...................................348 Queue ....................................325 random...................................249 re ........................................220 repr .....................................215 rexec ....................................351 rfc822 ...................................369 sched ....................................294 select ...................................313 sgmllib .................................383 shelve ...................................262 shlex ....................................415 shutil ...................................304 signal ...................................305 site .....................................190 socket ...................................307 stat .....................................283 statvfs .................................285 string ...................................217 StringIO ................................231 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 [ 138 ] 139 140 141 142 143 144 145 |