summaryrefslogtreecommitdiffstats
path: root/Python/specialize.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2022-03-05 15:47:00 (GMT)
committerGitHub <noreply@github.com>2022-03-05 15:47:00 (GMT)
commit6927632492cbad86a250aa006c1847e03b03e70b (patch)
treee78631ceabf92fb41ab1deb78a024d2704a3eddb /Python/specialize.c
parentab9301a28fa431d7a32163126fc96de3b2ce6107 (diff)
downloadcpython-6927632492cbad86a250aa006c1847e03b03e70b.zip
cpython-6927632492cbad86a250aa006c1847e03b03e70b.tar.gz
cpython-6927632492cbad86a250aa006c1847e03b03e70b.tar.bz2
Remove trailing spaces (GH-31695)
Diffstat (limited to 'Python/specialize.c')
-rw-r--r--Python/specialize.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/specialize.c b/Python/specialize.c
index 6328f11..417eece 100644
--- a/Python/specialize.c
+++ b/Python/specialize.c
@@ -1077,7 +1077,7 @@ _Py_Specialize_LoadMethod(PyObject *owner, _Py_CODEUNIT *instr, PyObject *name)
PyTypeObject *owner_cls = Py_TYPE(owner);
if (PyModule_CheckExact(owner)) {
- assert(INLINE_CACHE_ENTRIES_LOAD_ATTR <=
+ assert(INLINE_CACHE_ENTRIES_LOAD_ATTR <=
INLINE_CACHE_ENTRIES_LOAD_METHOD);
int err = specialize_module_load_attr(owner, instr, name, LOAD_METHOD,
LOAD_METHOD_MODULE);