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

Delta Between Two Patch Sets: src/org/python/core/PyBaseException.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) 2008 Jython Developers */ 1 /* Copyright (c) 2008 Jython Developers */
2 package org.python.core; 2 package org.python.core;
3 3
4 import org.python.expose.ExposedDelete; 4 import org.python.expose.ExposedDelete;
5 import org.python.expose.ExposedGet; 5 import org.python.expose.ExposedGet;
6 import org.python.expose.ExposedMethod; 6 import org.python.expose.ExposedMethod;
7 import org.python.expose.ExposedNew; 7 import org.python.expose.ExposedNew;
8 import org.python.expose.ExposedSet; 8 import org.python.expose.ExposedSet;
9 import org.python.expose.ExposedType; 9 import org.python.expose.ExposedType;
10 10
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 @ExposedSet(name = "args") 188 @ExposedSet(name = "args")
189 public void setArgs(PyObject val) { 189 public void setArgs(PyObject val) {
190 args = PyTuple.fromIterable(val); 190 args = PyTuple.fromIterable(val);
191 } 191 }
192 192
193 @ExposedDelete(name = "message") 193 @ExposedDelete(name = "message")
194 public void delMessage() { 194 public void delMessage() {
195 message = Py.None; 195 message = Py.None;
196 } 196 }
197 } 197 }
LEFTRIGHT

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