File tree Expand file tree Collapse file tree 2 files changed +18
-5
lines changed Expand file tree Collapse file tree 2 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -165,8 +165,3 @@ func PyErr_CheckSignals() int {
165
165
func PyErr_SetInterrupt () {
166
166
C .PyErr_SetInterrupt ()
167
167
}
168
-
169
- //PySignal_SetWakeupFd : https://docs.python.org/3/c-api/exceptions.html#c.PySignal_SetWakeupFd
170
- func PySignal_SetWakeupFd (fd uintptr ) uintptr {
171
- return uintptr (C .PySignal_SetWakeupFd (C .int (fd )))
172
- }
Original file line number Diff line number Diff line change
1
+ // Unless explicitly stated otherwise all files in this repository are licensed
2
+ // under $license_for_repo License.
3
+ // This product includes software developed at Datadog (https://www.datadoghq.com/).
4
+ // Copyright 2018 Datadog, Inc.
5
+
6
+ // +build !windows
7
+
8
+ package python3
9
+
10
+ /*
11
+ #include "Python.h"
12
+ */
13
+ import "C"
14
+
15
+ //PySignal_SetWakeupFd : https://docs.python.org/3/c-api/exceptions.html#c.PySignal_SetWakeupFd
16
+ func PySignal_SetWakeupFd (fd uintptr ) uintptr {
17
+ return uintptr (C .PySignal_SetWakeupFd (C .int (fd )))
18
+ }
You can’t perform that action at this time.
0 commit comments