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

Delta Between Two Patch Sets: src/com/ziclix/python/sql/PyConnection.java

Issue 2888: __findattr__ refactor (Closed) SVN Base: https://jython.svn.sourceforge.net/svnroot/jython/branches/asm
Left Patch Set: Created 1 year, 3 months ago
Right 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
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 493 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 rstype = (parser.numArg() >= 2) ? parser.arg(1) : rstype; 504 rstype = (parser.numArg() >= 2) ? parser.arg(1) : rstype;
505 rsconcur = (parser.numArg() >= 3) ? parser.arg(2) : rsconcur; 505 rsconcur = (parser.numArg() >= 3) ? parser.arg(2) : rsconcur;
506 506
507 return c.cursor(dynamic.__nonzero__(), rstype, rsconcur); 507 return c.cursor(dynamic.__nonzero__(), rstype, rsconcur);
508 508
509 default : 509 default :
510 throw info.unexpectedCall(args.length, true); 510 throw info.unexpectedCall(args.length, true);
511 } 511 }
512 } 512 }
513 } 513 }
LEFTRIGHT

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