Skip to content

Commit fb4d0e0

Browse files
committed
Fix typos.
1 parent c86c9de commit fb4d0e0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Lib/codeop.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
r"""Utilities to compile possibly incomplete Python source code.
22
33
This module provides two interfaces, broadly similar to the builtin
4-
function compile(), that take progam text, a filename and a 'mode'
4+
function compile(), that takes program text, a filename and a 'mode'
55
and:
66
7-
- Return a code object if the command is complete and valid
8-
- Return None if the command is incomplete
9-
- Raise SyntaxError, ValueError or OverflowError if the command is a
7+
- Returns code object if the command is complete and valid
8+
- Returns None if the command is incomplete
9+
- Raises SyntaxError, ValueError or OverflowError if the command is a
1010
syntax error (OverflowError and ValueError can be produced by
1111
malformed literals).
1212

0 commit comments

Comments
 (0)