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

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

Issue 2888: __findattr__ refactor (Closed) Base URL: https://jython.svn.sourceforge.net/svnroot/jython/branches/asm
Left Patch Set: Created 16 years, 7 months ago
Right Patch Set: This is the actually commited patch (on r5155), in case you have more comments Created 16 years, 7 months ago
Left:
Right:
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
« no previous file with change/comment | « src/org/python/core/PyLongDerived.java ('k') | src/org/python/core/PyModule.java » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 import org.python.expose.ExposedGet; 4 import org.python.expose.ExposedGet;
5 import org.python.expose.ExposedMethod; 5 import org.python.expose.ExposedMethod;
6 import org.python.expose.ExposedNew; 6 import org.python.expose.ExposedNew;
7 import org.python.expose.ExposedType; 7 import org.python.expose.ExposedType;
8 import org.python.expose.MethodType; 8 import org.python.expose.MethodType;
9 9
10 /** 10 /**
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 funcName = im_func.__findattr__("__name__"); 209 funcName = im_func.__findattr__("__name__");
210 } catch (PyException pye) { 210 } catch (PyException pye) {
211 // continue 211 // continue
212 } 212 }
213 if (funcName == null) { 213 if (funcName == null) {
214 return "?"; 214 return "?";
215 } 215 }
216 return funcName.toString(); 216 return funcName.toString();
217 } 217 }
218 } 218 }
LEFTRIGHT

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