Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mypyc/lib-rt/CPy.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
#ifndef CPY_CPY_H
#define CPY_CPY_H

#include <stdbool.h>
#include <Python.h>
#include <stdbool.h>
#include <frameobject.h>
#include <structmember.h>
#include <assert.h>
Expand Down
2 changes: 1 addition & 1 deletion mypyc/lib-rt/pythonsupport.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#ifndef CPY_PYTHONSUPPORT_H
#define CPY_PYTHONSUPPORT_H

#include <stdbool.h>
#include <Python.h>
#include <stdbool.h>
#include "pythoncapi_compat.h"
#include <frameobject.h>
#include <assert.h>
Expand Down
2 changes: 1 addition & 1 deletion mypyc/lib-rt/strings/librt_strings.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#ifndef LIBRT_STRINGS_H
#define LIBRT_STRINGS_H

#include <stdbool.h>
#include <Python.h>
#include <stdbool.h>
#include "librt_strings_common.h"

// ABI version -- only an exact match is compatible. This will only be changed in
Expand Down
2 changes: 1 addition & 1 deletion mypyc/lib-rt/strings/librt_strings_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
int
import_librt_strings(void);

#include <stdbool.h>
#include <Python.h>
#include <stdbool.h>
#include "librt_strings.h"

extern void *LibRTStrings_API[LIBRT_STRINGS_API_LEN];
Expand Down
2 changes: 1 addition & 1 deletion mypyc/lib-rt/test_capi.cc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Test cases

#include <gtest/gtest.h>
#include <Python.h>
#include "CPy.h"
#include <gtest/gtest.h>

static PyObject *moduleDict;

Expand Down
Loading