~ubuntu-branches/ubuntu/natty/python3.1/natty-security

« back to all changes in this revision

Viewing changes to Doc/library/dis.rst

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-07-06 16:52:42 UTC
  • mfrom: (1.2.1 upstream) (2.1.11 sid)
  • Revision ID: james.westby@ubuntu.com-20100706165242-2xv4i019r3et6c0j
Tags: 3.1.2+20100706-1ubuntu1
* Merge with Debian; remaining changes:
  - Regenerate the control file.
  - Add debian/patches/overwrite-semaphore-check for Lucid buildds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
383
383
the stack so that it is available for further iterations of the loop.
384
384
 
385
385
 
386
 
.. opcode:: LOAD_LOCALS ()
387
 
 
388
 
   Pushes a reference to the locals of the current scope on the stack. This is used
389
 
   in the code for a class definition: After the class body is evaluated, the
390
 
   locals are passed to the class definition.
391
 
 
392
 
 
393
386
.. opcode:: RETURN_VALUE ()
394
387
 
395
388
   Returns with TOS to the caller of the function.