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

Unified Diff: src/com/ziclix/python/sql/util/BCP.java

Issue 2888: __findattr__ refactor (Closed) SVN Base: https://jython.svn.sourceforge.net/svnroot/jython/branches/asm
Patch Set: This is the actually commited patch (on r5155), in case you have more comments Created 1 year, 3 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:
View side by-side-diff with in-line comments
Download patch
Index: src/com/ziclix/python/sql/util/BCP.java
===================================================================
--- src/com/ziclix/python/sql/util/BCP.java (revisión: 5153)
+++ src/com/ziclix/python/sql/util/BCP.java (copia de trabajo)
@@ -128,7 +128,7 @@
* @param name
* @return the attribute for the given name
*/
- public PyObject __findattr__(String name) {
+ public PyObject __findattr_ex__(String name) {
if ("destinationDataHandler".equals(name)) {
return Py.java2py(this.destDH);
@@ -140,7 +140,7 @@
return Py.newInteger(this.queuesize);
}
- return super.__findattr__(name);
+ return super.__findattr_ex__(name);
}
/**

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