Recent Issues
|
Sign in
with your
Google
Account to create issues and add comments
Unified Diff: src/com/ziclix/python/sql/PyConnection.java
Issue 2888 :
__findattr__ refactor (Closed)
Patch Set: This is the actually commited patch (on r5155), in case you have more comments
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
src/org/python/core/PyEnumerateDerived.java
src/org/python/core/PyFrame.java
src/org/python/core/PySuper.java
src/org/python/core/PySetDerived.java
src/org/python/core/PyFloatDerived.java
src/org/python/core/PyArrayDerived.java
src/org/python/core/PyType.java
src/org/python/core/PyFileDerived.java
src/org/python/core/PyTableCode.java
src/org/python/core/PyModuleDerived.java
src/org/python/core/PyTupleDerived.java
src/org/python/core/PyJavaPackage.java
src/org/python/core/PyLongDerived.java
src/org/python/core/PyObject.java
src/org/python/core/PyJavaClass.java
src/org/python/core/PyFrozenSetDerived.java
src/org/python/core/PySuperDerived.java
src/org/python/core/PySliceDerived.java
src/org/python/core/PyListDerived.java
src/org/python/core/PyDictionaryDerived.java
src/org/python/core/PyClassMethodDerived.java
src/org/python/core/PyObjectDerived.java
src/org/python/core/PyStringDerived.java
src/org/python/core/PyIntegerDerived.java
src/org/python/core/PyComplexDerived.java
src/org/python/core/PySystemState.java
src/org/python/core/PyUnicodeDerived.java
src/org/python/core/PyBaseExceptionDerived.java
src/org/python/core/PyMethod.java
src/org/python/core/PyModule.java
src/org/python/core/PyPropertyDerived.java
src/org/python/core/PyBaseException.java
src/org/python/core/PyInstance.java
src/org/python/core/PyClass.java
src/org/python/core/PyBooleanDerived.java
src/org/python/core/PyTypeDerived.java
src/org/python/modules/_weakref/ProxyType.java
src/org/python/modules/_weakref/ReferenceTypeDerived.java
src/org/python/modules/sre/MatchObject.java
src/org/python/modules/thread/PyLocalDerived.java
src/org/python/modules/random/PyRandomDerived.java
src/org/python/modules/_csv/PyDialectDerived.java
src/org/python/modules/zipimport/zipimporterDerived.java
src/org/python/modules/_functools/PyPartialDerived.java
src/org/python/modules/collections/PyDequeDerived.java
src/org/python/modules/collections/PyDefaultDictDerived.java
src/com/ziclix/python/sql/PyExtendedCursor.java
src/com/ziclix/python/sql/PyConnection.java
src/com/ziclix/python/sql/connect/Connectx.java
src/com/ziclix/python/sql/connect/Connect.java
src/com/ziclix/python/sql/connect/Lookup.java
src/com/ziclix/python/sql/PyStatement.java
src/com/ziclix/python/sql/PyCursor.java
src/com/ziclix/python/sql/util/BCP.java
src/templates/object.derived
Lib/test/test_descr_jy.py
Index: src/com/ziclix/python/sql/PyConnection.java
===================================================================
--- src/com/ziclix/python/sql/PyConnection.java (revisión: 5153)
+++ src/com/ziclix/python/sql/PyConnection.java (copia de trabajo)
@@ -178,7 +178,7 @@
* @param name the name of the attribute of interest
* @return the value for the attribute of the specified name
*/
- public PyObject __findattr__(String name) {
+ public PyObject __findattr_ex__(String name) {
if ("autocommit".equals(name)) {
try {
@@ -230,7 +230,7 @@
return Py.newBoolean(closed);
}
- return super.__findattr__(name);
+ return super.__findattr_ex__(name);
}
/**