Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4df3068

Browse files
committed
Fix typo fix.
1 parent 6402357 commit 4df3068

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

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 takes program text, a filename and a 'mode'
4+
function compile(), which take program text, a filename and a 'mode'
55
and:
66
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
7+
- Return 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
1010
syntax error (OverflowError and ValueError can be produced by
1111
malformed literals).
1212

0 commit comments

Comments
 (0)