Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(14)

Delta Between Two Patch Sets: src/org/python/core/PyFrame.java

Issue 2888: __findattr__ refactor (Closed) SVN Base: https://jython.svn.sourceforge.net/svnroot/jython/branches/asm
Left Patch Set: Created 1 year, 2 months ago
Right Patch Set: This is the actually commited patch (on r5155), in case you have more comments Created 1 year, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
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
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 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld r483