[Python-checkins] bpo-1635741: Fix _struct for build bot error (GH-23402)

miss-islington webhook-mailer at python.org
Thu Nov 19 09:14:44 EST 2020


https://github.com/python/cpython/commit/588c7c9f08a673472a29e3f8f7fda9e343212e7d
commit: 588c7c9f08a673472a29e3f8f7fda9e343212e7d
branch: master
author: Dong-hee Na <donghee.na at python.org>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2020-11-19T06:14:34-08:00
summary:

bpo-1635741: Fix _struct for build bot error (GH-23402)



Automerge-Triggered-By: GH:tiran

files:
M Modules/_struct.c

diff --git a/Modules/_struct.c b/Modules/_struct.c
index 8dfcd882a444b..eeccc17965468 100644
--- a/Modules/_struct.c
+++ b/Modules/_struct.c
@@ -728,7 +728,7 @@ np_halffloat(_structmodulestate *state, char *p, PyObject *v, const formatdef *f
 #if PY_LITTLE_ENDIAN
     return pack_halffloat(state, p, v, 1);
 #else
-    return pack_halffloat(statem p, v, 0);
+    return pack_halffloat(state, p, v, 0);
 #endif
 }
 



More information about the Python-checkins mailing list