[Python-checkins] python/dist/src/Lib codeop.py,1.7.8.1,1.7.8.2

doerwalter at users.sourceforge.net doerwalter at users.sourceforge.net
Thu Nov 20 08:39:00 EST 2003


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

Modified Files:
      Tag: release23-maint
	codeop.py 
Log Message:
Backport checkin:
Fix typo fix.


Index: codeop.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/codeop.py,v
retrieving revision 1.7.8.1
retrieving revision 1.7.8.2
diff -C2 -d -r1.7.8.1 -r1.7.8.2
*** codeop.py	19 Nov 2003 13:37:01 -0000	1.7.8.1
--- codeop.py	20 Nov 2003 13:38:57 -0000	1.7.8.2
***************
*** 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 a 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).
--- 2,11 ----
  
  This module provides two interfaces, broadly similar to the builtin
! function compile(), which takes program 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).





More information about the Python-checkins mailing list