Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6402357 commit 4df3068Copy full SHA for 4df3068
1 file changed
Lib/codeop.py
@@ -1,12 +1,12 @@
1
r"""Utilities to compile possibly incomplete Python source code.
2
3
This module provides two interfaces, broadly similar to the builtin
4
-function compile(), that takes program text, a filename and a 'mode'
+function compile(), which take program text, a filename and a 'mode'
5
and:
6
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
+- 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
10
syntax error (OverflowError and ValueError can be produced by
11
malformed literals).
12
0 commit comments