We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0ca955 commit bcbfa64Copy full SHA for bcbfa64
1 file changed
Include/intobject.h
@@ -11,7 +11,11 @@
11
extern "C" {
12
#endif
13
14
+#if defined(__GNUC__)
15
#warning "DeprecationWarning: intobject.h is going to be removed in 3.1"
16
+#elif defined(MS_WINDOWS)
17
+#pragma message("DeprecationWarning: intobject.h is going to be removed in 3.1")
18
+#endif
19
20
#define PyInt_Check(op) PyLong_Check(op)
21
#define PyInt_FromString PyLong_FromString
0 commit comments