Skip to content

Commit 8f9ba8d

Browse files
Just use int for bool.
1 parent b506b45 commit 8f9ba8d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Python/marshal.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
#include "marshal.h"
1515
#include "pycore_hashtable.h"
1616
#include "pycore_code.h" // _PyCode_New()
17-
#include <stdbool.h>
1817

1918
/*[clinic input]
2019
module marshal
@@ -1679,7 +1678,7 @@ PyMarshal_ReadObjectFromString(const char *str, Py_ssize_t len)
16791678
}
16801679

16811680
static PyObject *
1682-
write_object_to_string(PyObject *x, int version, bool stable)
1681+
write_object_to_string(PyObject *x, int version, int stable)
16831682
{
16841683
WFILE wf;
16851684

0 commit comments

Comments
 (0)