[Python-checkins] python/dist/src/Lib codeop.py,1.7,1.8

doerwalter at users.sourceforge.net doerwalter at users.sourceforge.net
Wed Nov 19 08:35:51 EST 2003


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1:/tmp/cvs-serv29941/Lib

Modified Files:
	codeop.py 
Log Message:
Fix typos.


Index: codeop.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/codeop.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** codeop.py	16 May 2003 01:24:30 -0000	1.7
--- codeop.py	19 Nov 2003 13:35:49 -0000	1.8
***************
*** 2,11 ****
  
  This module provides two interfaces, broadly similar to the builtin
! function compile(), that take progam text, a filename and a 'mode'
  and:
  
! - Return a code object if the command is complete and valid
! - Return None if the command is incomplete
! - Raise SyntaxError, ValueError or OverflowError if the command is a
    syntax error (OverflowError and ValueError can be produced by
    malformed literals).
--- 2,11 ----
  
  This module provides two interfaces, broadly similar to the builtin
! function compile(), that takes program text, a filename and a 'mode'
  and:
  
! - Returns code object if the command is complete and valid
! - Returns None if the command is incomplete
! - Raises SyntaxError, ValueError or OverflowError if the command is a
    syntax error (OverflowError and ValueError can be produced by
    malformed literals).





More information about the Python-checkins mailing list