| LEFT | RIGHT |
| 1 // Copyright (c) Corporation for National Research Initiatives | 1 // Copyright (c) Corporation for National Research Initiatives |
| 2 package org.python.core; | 2 package org.python.core; |
| 3 | 3 |
| 4 /** | 4 /** |
| 5 * A Python frame object. | 5 * A Python frame object. |
| 6 */ | 6 */ |
| 7 public class PyFrame extends PyObject | 7 public class PyFrame extends PyObject |
| 8 { | 8 { |
| 9 public PyFrame f_back; | 9 public PyFrame f_back; |
| 10 | 10 |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 } | 382 } |
| 383 | 383 |
| 384 public void setderef(int index, PyObject value) { | 384 public void setderef(int index, PyObject value) { |
| 385 f_env[index].ob_ref = value; | 385 f_env[index].ob_ref = value; |
| 386 } | 386 } |
| 387 | 387 |
| 388 public void to_cell(int parm_index, int env_index) { | 388 public void to_cell(int parm_index, int env_index) { |
| 389 f_env[env_index].ob_ref = f_fastlocals[parm_index]; | 389 f_env[env_index].ob_ref = f_fastlocals[parm_index]; |
| 390 } | 390 } |
| 391 } | 391 } |
| LEFT | RIGHT |