We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea30477 commit f3aae59Copy full SHA for f3aae59
src/if_py_both.h
@@ -12,6 +12,10 @@
12
* Common code for if_python.c and if_python3.c.
13
*/
14
15
+#if PY_VERSION_HEX < 0x02050000
16
+typedef int Py_ssize_t; /* Python 2.4 and earlier don't have this type. */
17
+#endif
18
+
19
#ifdef FEAT_MBYTE
20
# define ENC_OPT p_enc
21
#else
src/version.c
@@ -714,6 +714,8 @@ static char *(features[]) =
714
715
static int included_patches[] =
716
{ /* Add new patch number below this line */
717
+/**/
718
+ 626,
719
/**/
720
625,
721
0 commit comments