[Python-checkins] CVS: python/nondist/peps pep-0249.txt,1.4,1.5

M.-A. Lemburg lemburg@users.sourceforge.net
Wed, 08 Aug 2001 01:38:08 -0700


Update of /cvsroot/python/python/nondist/peps
In directory usw-pr-cvs1:/tmp/cvs-serv31207

Modified Files:
	pep-0249.txt 
Log Message:
Added clarification about use of .executemany() with stored procedures.
Patch by Bob Kline.



Index: pep-0249.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0249.txt,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** pep-0249.txt	2001/07/14 16:21:44	1.4
--- pep-0249.txt	2001/08/08 08:38:06	1.5
***************
*** 338,341 ****
--- 338,347 ----
              one call.
              
+             Use of this method for an operation which produces one or
+             more result sets constitutes undefined behavior, and the
+             implementation is permitted (but not required) to raise 
+             an exception when it detects that a result set has been
+             created by an invocation of the operation.
+             
              The same comments as for execute() also apply accordingly
              to this method.