Lines Matching refs:Implements

193    Implements ``TOS = +TOS``.
198 Implements ``TOS = -TOS``.
203 Implements ``TOS = not TOS``.
208 Implements ``TOS = `TOS```.
213 Implements ``TOS = ~TOS``.
218 Implements ``TOS = iter(TOS)``.
227 Implements ``TOS = TOS1 ** TOS``.
232 Implements ``TOS = TOS1 * TOS``.
237 Implements ``TOS = TOS1 / TOS`` when ``from __future__ import division`` is
243 Implements ``TOS = TOS1 // TOS``.
248 Implements ``TOS = TOS1 / TOS`` when ``from __future__ import division`` is
254 Implements ``TOS = TOS1 % TOS``.
259 Implements ``TOS = TOS1 + TOS``.
264 Implements ``TOS = TOS1 - TOS``.
269 Implements ``TOS = TOS1[TOS]``.
274 Implements ``TOS = TOS1 << TOS``.
279 Implements ``TOS = TOS1 >> TOS``.
284 Implements ``TOS = TOS1 & TOS``.
289 Implements ``TOS = TOS1 ^ TOS``.
294 Implements ``TOS = TOS1 | TOS``.
304 Implements in-place ``TOS = TOS1 ** TOS``.
309 Implements in-place ``TOS = TOS1 * TOS``.
314 Implements in-place ``TOS = TOS1 / TOS`` when ``from __future__ import
320 Implements in-place ``TOS = TOS1 // TOS``.
325 Implements in-place ``TOS = TOS1 / TOS`` when ``from __future__ import
331 Implements in-place ``TOS = TOS1 % TOS``.
336 Implements in-place ``TOS = TOS1 + TOS``.
341 Implements in-place ``TOS = TOS1 - TOS``.
346 Implements in-place ``TOS = TOS1 << TOS``.
351 Implements in-place ``TOS = TOS1 >> TOS``.
356 Implements in-place ``TOS = TOS1 & TOS``.
361 Implements in-place ``TOS = TOS1 ^ TOS``.
366 Implements in-place ``TOS = TOS1 | TOS``.
373 Implements ``TOS = TOS[:]``.
378 Implements ``TOS = TOS1[TOS:]``.
383 Implements ``TOS = TOS1[:TOS]``.
388 Implements ``TOS = TOS2[TOS1:TOS]``.
396 Implements ``TOS[:] = TOS1``.
401 Implements ``TOS1[TOS:] = TOS2``.
406 Implements ``TOS1[:TOS] = TOS2``.
411 Implements ``TOS2[TOS1:TOS] = TOS3``.
416 Implements ``del TOS[:]``.
421 Implements ``del TOS1[TOS:]``.
426 Implements ``del TOS1[:TOS]``.
431 Implements ``del TOS2[TOS1:TOS]``.
436 Implements ``TOS1[TOS] = TOS2``.
441 Implements ``del TOS1[TOS]``.
448 Implements the expression statement for the interactive mode. TOS is removed
521 Implements ``exec TOS2,TOS1,TOS``. The compiler fills missing optional
585 Implements ``name = TOS``. *namei* is the index of *name* in the attribute
592 Implements ``del name``, where *namei* is the index into :attr:`co_names`
610 Implements ``TOS.name = TOS1``, where *namei* is the index of name in
616 Implements ``del TOS.name``, using *namei* as index into :attr:`co_names`.