Recent Issues
|
Sign in
with your
Google
Account to create issues and add comments
Delta Between Two Patch Sets: src/com/ziclix/python/sql/PyExtendedCursor.java
Issue 2888 :
__findattr__ refactor (Closed)
Left Patch Set:
Right 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:
Lib/test/test_descr_jy.py
src/com/ziclix/python/sql/PyConnection.java
src/com/ziclix/python/sql/PyCursor.java
src/com/ziclix/python/sql/PyExtendedCursor.java
src/com/ziclix/python/sql/PyStatement.java
src/com/ziclix/python/sql/connect/Connect.java
src/com/ziclix/python/sql/connect/Connectx.java
src/com/ziclix/python/sql/connect/Lookup.java
src/com/ziclix/python/sql/util/BCP.java
src/org/python/core/PyArrayDerived.java
src/org/python/core/PyBaseException.java
src/org/python/core/PyBaseExceptionDerived.java
src/org/python/core/PyBooleanDerived.java
src/org/python/core/PyClass.java
src/org/python/core/PyClassMethodDerived.java
src/org/python/core/PyComplexDerived.java
src/org/python/core/PyDictionaryDerived.java
src/org/python/core/PyEnumerateDerived.java
src/org/python/core/PyFileDerived.java
src/org/python/core/PyFloatDerived.java
src/org/python/core/PyFrame.java
src/org/python/core/PyFrozenSetDerived.java
src/org/python/core/PyInstance.java
src/org/python/core/PyIntegerDerived.java
src/org/python/core/PyJavaClass.java
src/org/python/core/PyJavaPackage.java
src/org/python/core/PyListDerived.java
src/org/python/core/PyLongDerived.java
src/org/python/core/PyMethod.java
src/org/python/core/PyModule.java
src/org/python/core/PyModuleDerived.java
src/org/python/core/PyObject.java
src/org/python/core/PyObjectDerived.java
src/org/python/core/PyPropertyDerived.java
src/org/python/core/PySetDerived.java
src/org/python/core/PySliceDerived.java
src/org/python/core/PyStringDerived.java
src/org/python/core/PySuper.java
src/org/python/core/PySuperDerived.java
src/org/python/core/PySystemState.java
src/org/python/core/PyTableCode.java
src/org/python/core/PyTupleDerived.java
src/org/python/core/PyType.java
src/org/python/core/PyTypeDerived.java
src/org/python/core/PyUnicodeDerived.java
src/org/python/modules/_csv/PyDialectDerived.java
src/org/python/modules/_functools/PyPartialDerived.java
src/org/python/modules/_weakref/ProxyType.java
src/org/python/modules/_weakref/ReferenceTypeDerived.java
src/org/python/modules/collections/PyDefaultDictDerived.java
src/org/python/modules/collections/PyDequeDerived.java
src/org/python/modules/random/PyRandomDerived.java
src/org/python/modules/sre/MatchObject.java
src/org/python/modules/thread/PyLocalDerived.java
src/org/python/modules/zipimport/zipimporterDerived.java
src/templates/object.derived
LEFT RIGHT
1 /* 1 /*
2 * Jython Database Specification API 2.0 2 * Jython Database Specification API 2.0
3 * 3 *
4 * $Id$ 4 * $Id$
5 * 5 *
6 * Copyright (c) 2001 brian zimmer <bzimmer@ziclix.com> 6 * Copyright (c) 2001 brian zimmer <bzimmer@ziclix.com>
7 * 7 *
8 */ 8 */
9 package com.ziclix.python.sql; 9 package com.ziclix.python.sql;
10 10
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading...
589 case 105: 589 case 105:
590 cursor.procedurecolumns(arg1, arg2, arg3, arg4); 590 cursor.procedurecolumns(arg1, arg2, arg3, arg4);
591 591
592 return Py.None; 592 return Py.None;
593 593
594 default : 594 default :
595 throw info.unexpectedCall(4, false); 595 throw info.unexpectedCall(4, false);
596 } 596 }
597 } 597 }
598 } 598 }
LEFT RIGHT