summaryrefslogtreecommitdiff
path: root/Lib/codeop.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2022-03-05 17:47:00 +0200
committerGitHub <noreply@github.com>2022-03-05 17:47:00 +0200
commit6927632492cbad86a250aa006c1847e03b03e70b (patch)
treee78631ceabf92fb41ab1deb78a024d2704a3eddb /Lib/codeop.py
parentab9301a28fa431d7a32163126fc96de3b2ce6107 (diff)
downloadcpython-git-6927632492cbad86a250aa006c1847e03b03e70b.tar.gz
Remove trailing spaces (GH-31695)
Diffstat (limited to 'Lib/codeop.py')
-rw-r--r--Lib/codeop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/codeop.py b/Lib/codeop.py
index 568e9bbc11..45a378baba 100644
--- a/Lib/codeop.py
+++ b/Lib/codeop.py
@@ -43,7 +43,7 @@ __all__ = ["compile_command", "Compile", "CommandCompiler"]
# The following flags match the values from Include/cpython/compile.h
# Caveat emptor: These flags are undocumented on purpose and depending
# on their effect outside the standard library is **unsupported**.
-PyCF_DONT_IMPLY_DEDENT = 0x200
+PyCF_DONT_IMPLY_DEDENT = 0x200
PyCF_ALLOW_INCOMPLETE_INPUT = 0x4000
def _maybe_compile(compiler, source, filename, symbol):