]> granicus.if.org Git - python/commitdiff
Fix typo fix.
authorWalter Dörwald <walter@livinglogic.de>
Thu, 20 Nov 2003 13:38:01 +0000 (13:38 +0000)
committerWalter Dörwald <walter@livinglogic.de>
Thu, 20 Nov 2003 13:38:01 +0000 (13:38 +0000)
Lib/codeop.py

index ebdf58986107c22f000333ddb4e601042a009a20..daa7eb8e37ef4d7b0094b85c969a28fe96c740f6 100644 (file)
@@ -1,12 +1,12 @@
 r"""Utilities to compile possibly incomplete Python source code.
 
 This module provides two interfaces, broadly similar to the builtin
-function compile(), that takes program text, a filename and a 'mode'
+function compile(), which take 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
+- Return 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).