2 * C Extension module to test Python interpreter C APIs.
4 * The 'test_*' functions exported by this module are run as part of the
5 * standard Python regression test, via Lib/test/test_capi.py.
10 #include "structmember.h"
14 #endif /* WITH_THREAD */
15 static PyObject
*TestError
; /* set to exception object in init */
17 /* Raise TestError with test_name + ": " + msg, and return NULL. */
20 raiseTestError(const char* test_name
, const char* msg
)
24 if (strlen(test_name
) + strlen(msg
) > sizeof(buf
) - 50)
25 PyErr_SetString(TestError
, "internal error msg too large");
27 PyOS_snprintf(buf
, sizeof(buf
), "%s: %s", test_name
, msg
);
28 PyErr_SetString(TestError
, buf
);
33 /* Test #defines from pyconfig.h (particularly the SIZEOF_* defines).
35 The ones derived from autoconf on the UNIX-like OSes can be relied
36 upon (in the absence of sloppy cross-compiling), but the Windows
37 platforms have these hardcoded. Better safe than sorry.
40 sizeof_error(const char* fatname
, const char* typname
,
41 int expected
, int got
)
44 PyOS_snprintf(buf
, sizeof(buf
),
45 "%.200s #define == %d but sizeof(%.200s) == %d",
46 fatname
, expected
, typname
, got
);
47 PyErr_SetString(TestError
, buf
);
48 return (PyObject
*)NULL
;
52 test_config(PyObject
*self
)
54 #define CHECK_SIZEOF(FATNAME, TYPE) \
55 if (FATNAME != sizeof(TYPE)) \
56 return sizeof_error(#FATNAME, #TYPE, FATNAME, sizeof(TYPE))
58 CHECK_SIZEOF(SIZEOF_SHORT
, short);
59 CHECK_SIZEOF(SIZEOF_INT
, int);
60 CHECK_SIZEOF(SIZEOF_LONG
, long);
61 CHECK_SIZEOF(SIZEOF_VOID_P
, void*);
62 CHECK_SIZEOF(SIZEOF_TIME_T
, time_t);
64 CHECK_SIZEOF(SIZEOF_LONG_LONG
, PY_LONG_LONG
);
74 test_list_api(PyObject
*self
)
79 /* SF bug 132008: PyList_Reverse segfaults */
81 list
= PyList_New(NLIST
);
82 if (list
== (PyObject
*)NULL
)
83 return (PyObject
*)NULL
;
84 /* list = range(NLIST) */
85 for (i
= 0; i
< NLIST
; ++i
) {
86 PyObject
* anint
= PyInt_FromLong(i
);
87 if (anint
== (PyObject
*)NULL
) {
89 return (PyObject
*)NULL
;
91 PyList_SET_ITEM(list
, i
, anint
);
93 /* list.reverse(), via PyList_Reverse() */
94 i
= PyList_Reverse(list
); /* should not blow up! */
97 return (PyObject
*)NULL
;
99 /* Check that list == range(29, -1, -1) now */
100 for (i
= 0; i
< NLIST
; ++i
) {
101 PyObject
* anint
= PyList_GET_ITEM(list
, i
);
102 if (PyInt_AS_LONG(anint
) != NLIST
-1-i
) {
103 PyErr_SetString(TestError
,
104 "test_list_api: reverse screwed up");
106 return (PyObject
*)NULL
;
117 test_dict_inner(int count
)
119 Py_ssize_t pos
= 0, iterations
= 0;
121 PyObject
*dict
= PyDict_New();
127 for (i
= 0; i
< count
; i
++) {
128 v
= PyInt_FromLong(i
);
129 PyDict_SetItem(dict
, v
, v
);
133 while (PyDict_Next(dict
, &pos
, &k
, &v
)) {
137 i
= PyInt_AS_LONG(v
) + 1;
138 o
= PyInt_FromLong(i
);
141 if (PyDict_SetItem(dict
, k
, o
) < 0) {
150 if (iterations
!= count
) {
153 "test_dict_iteration: dict iteration went wrong ");
161 test_dict_iteration(PyObject
* self
)
165 for (i
= 0; i
< 200; i
++) {
166 if (test_dict_inner(i
) < 0) {
176 /* Issue #4701: Check that PyObject_Hash implicitly calls
177 * PyType_Ready if it hasn't already been called
179 static PyTypeObject _HashInheritanceTester_Type
= {
180 PyObject_HEAD_INIT(NULL
)
181 0, /* Number of items for varobject */
182 "hashinheritancetester", /* Name of this type */
183 sizeof(PyObject
), /* Basic object size */
184 0, /* Item size for varobject */
185 (destructor
)PyObject_Del
, /* tp_dealloc */
191 0, /* tp_as_number */
192 0, /* tp_as_sequence */
193 0, /* tp_as_mapping */
197 PyObject_GenericGetAttr
, /* tp_getattro */
199 0, /* tp_as_buffer */
200 Py_TPFLAGS_DEFAULT
, /* tp_flags */
204 0, /* tp_richcompare */
205 0, /* tp_weaklistoffset */
213 0, /* tp_descr_get */
214 0, /* tp_descr_set */
215 0, /* tp_dictoffset */
218 PyType_GenericNew
, /* tp_new */
222 test_lazy_hash_inheritance(PyObject
* self
)
228 type
= &_HashInheritanceTester_Type
;
229 obj
= PyObject_New(PyObject
, type
);
234 "test_lazy_hash_inheritance: failed to create object");
238 if (type
->tp_dict
!= NULL
) {
241 "test_lazy_hash_inheritance: type initialised too soon");
246 hash
= PyObject_Hash(obj
);
247 if ((hash
== -1) && PyErr_Occurred()) {
251 "test_lazy_hash_inheritance: could not hash object");
256 if (type
->tp_dict
== NULL
) {
259 "test_lazy_hash_inheritance: type not initialised by hash()");
264 if (type
->tp_hash
!= PyType_Type
.tp_hash
) {
267 "test_lazy_hash_inheritance: unexpected hash function");
276 /* Tests of PyLong_{As, From}{Unsigned,}Long(), and (#ifdef HAVE_LONG_LONG)
277 PyLong_{As, From}{Unsigned,}LongLong().
279 Note that the meat of the test is contained in testcapi_long.h.
280 This is revolting, but delicate code duplication is worse: "almost
281 exactly the same" code is needed to test PY_LONG_LONG, but the ubiquitous
282 dependence on type names makes it impossible to use a parameterized
283 function. A giant macro would be even worse than this. A C++ template
286 The "report an error" functions are deliberately not part of the #include
287 file: if the test fails, you can set a breakpoint in the appropriate
288 error function directly, and crawl back from there in the debugger.
291 #define UNBIND(X) Py_DECREF(X); (X) = NULL
294 raise_test_long_error(const char* msg
)
296 return raiseTestError("test_long_api", msg
);
299 #define TESTNAME test_long_api_inner
300 #define TYPENAME long
301 #define F_S_TO_PY PyLong_FromLong
302 #define F_PY_TO_S PyLong_AsLong
303 #define F_U_TO_PY PyLong_FromUnsignedLong
304 #define F_PY_TO_U PyLong_AsUnsignedLong
306 #include "testcapi_long.h"
309 test_long_api(PyObject
* self
)
311 return TESTNAME(raise_test_long_error
);
321 #ifdef HAVE_LONG_LONG
324 raise_test_longlong_error(const char* msg
)
326 return raiseTestError("test_longlong_api", msg
);
329 #define TESTNAME test_longlong_api_inner
330 #define TYPENAME PY_LONG_LONG
331 #define F_S_TO_PY PyLong_FromLongLong
332 #define F_PY_TO_S PyLong_AsLongLong
333 #define F_U_TO_PY PyLong_FromUnsignedLongLong
334 #define F_PY_TO_U PyLong_AsUnsignedLongLong
336 #include "testcapi_long.h"
339 test_longlong_api(PyObject
* self
, PyObject
*args
)
341 return TESTNAME(raise_test_longlong_error
);
351 /* Test the L code for PyArg_ParseTuple. This should deliver a PY_LONG_LONG
352 for both long and int arguments. The test may leak a little memory if
356 test_L_code(PyObject
*self
)
358 PyObject
*tuple
, *num
;
361 tuple
= PyTuple_New(1);
365 num
= PyLong_FromLong(42);
369 PyTuple_SET_ITEM(tuple
, 0, num
);
372 if (PyArg_ParseTuple(tuple
, "L:test_L_code", &value
) < 0)
375 return raiseTestError("test_L_code",
376 "L code returned wrong value for long 42");
379 num
= PyInt_FromLong(42);
383 PyTuple_SET_ITEM(tuple
, 0, num
);
386 if (PyArg_ParseTuple(tuple
, "L:test_L_code", &value
) < 0)
389 return raiseTestError("test_L_code",
390 "L code returned wrong value for int 42");
397 #endif /* ifdef HAVE_LONG_LONG */
399 /* Test tuple argument processing */
401 getargs_tuple(PyObject
*self
, PyObject
*args
)
404 if (!PyArg_ParseTuple(args
, "i(ii)", &a
, &b
, &c
))
406 return Py_BuildValue("iii", a
, b
, c
);
409 /* test PyArg_ParseTupleAndKeywords */
410 static PyObject
*getargs_keywords(PyObject
*self
, PyObject
*args
, PyObject
*kwargs
)
412 static char *keywords
[] = {"arg1","arg2","arg3","arg4","arg5", NULL
};
413 static char *fmt
="(ii)i|(i(ii))(iii)i";
414 int int_args
[10]={-1, -1, -1, -1, -1, -1, -1, -1, -1, -1};
416 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, fmt
, keywords
,
417 &int_args
[0], &int_args
[1], &int_args
[2], &int_args
[3], &int_args
[4],
418 &int_args
[5], &int_args
[6], &int_args
[7], &int_args
[8], &int_args
[9]))
420 return Py_BuildValue("iiiiiiiiii",
421 int_args
[0], int_args
[1], int_args
[2], int_args
[3], int_args
[4],
422 int_args
[5], int_args
[6], int_args
[7], int_args
[8], int_args
[9]);
425 /* Functions to call PyArg_ParseTuple with integer format codes,
426 and return the result.
429 getargs_b(PyObject
*self
, PyObject
*args
)
432 if (!PyArg_ParseTuple(args
, "b", &value
))
434 return PyLong_FromUnsignedLong((unsigned long)value
);
438 getargs_B(PyObject
*self
, PyObject
*args
)
441 if (!PyArg_ParseTuple(args
, "B", &value
))
443 return PyLong_FromUnsignedLong((unsigned long)value
);
447 getargs_H(PyObject
*self
, PyObject
*args
)
449 unsigned short value
;
450 if (!PyArg_ParseTuple(args
, "H", &value
))
452 return PyLong_FromUnsignedLong((unsigned long)value
);
456 getargs_I(PyObject
*self
, PyObject
*args
)
459 if (!PyArg_ParseTuple(args
, "I", &value
))
461 return PyLong_FromUnsignedLong((unsigned long)value
);
465 getargs_k(PyObject
*self
, PyObject
*args
)
468 if (!PyArg_ParseTuple(args
, "k", &value
))
470 return PyLong_FromUnsignedLong(value
);
474 getargs_i(PyObject
*self
, PyObject
*args
)
477 if (!PyArg_ParseTuple(args
, "i", &value
))
479 return PyLong_FromLong((long)value
);
483 getargs_l(PyObject
*self
, PyObject
*args
)
486 if (!PyArg_ParseTuple(args
, "l", &value
))
488 return PyLong_FromLong(value
);
492 getargs_n(PyObject
*self
, PyObject
*args
)
495 if (!PyArg_ParseTuple(args
, "n", &value
))
497 return PyInt_FromSsize_t(value
);
500 #ifdef HAVE_LONG_LONG
502 getargs_L(PyObject
*self
, PyObject
*args
)
505 if (!PyArg_ParseTuple(args
, "L", &value
))
507 return PyLong_FromLongLong(value
);
511 getargs_K(PyObject
*self
, PyObject
*args
)
513 unsigned PY_LONG_LONG value
;
514 if (!PyArg_ParseTuple(args
, "K", &value
))
516 return PyLong_FromUnsignedLongLong(value
);
520 /* This function not only tests the 'k' getargs code, but also the
521 PyInt_AsUnsignedLongMask() and PyInt_AsUnsignedLongMask() functions. */
523 test_k_code(PyObject
*self
)
525 PyObject
*tuple
, *num
;
528 tuple
= PyTuple_New(1);
532 /* a number larger than ULONG_MAX even on 64-bit platforms */
533 num
= PyLong_FromString("FFFFFFFFFFFFFFFFFFFFFFFF", NULL
, 16);
537 value
= PyInt_AsUnsignedLongMask(num
);
538 if (value
!= ULONG_MAX
)
539 return raiseTestError("test_k_code",
540 "PyInt_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF");
542 PyTuple_SET_ITEM(tuple
, 0, num
);
545 if (PyArg_ParseTuple(tuple
, "k:test_k_code", &value
) < 0)
547 if (value
!= ULONG_MAX
)
548 return raiseTestError("test_k_code",
549 "k code returned wrong value for long 0xFFF...FFF");
552 num
= PyLong_FromString("-FFFFFFFF000000000000000042", NULL
, 16);
556 value
= PyInt_AsUnsignedLongMask(num
);
557 if (value
!= (unsigned long)-0x42)
558 return raiseTestError("test_k_code",
559 "PyInt_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF");
561 PyTuple_SET_ITEM(tuple
, 0, num
);
564 if (PyArg_ParseTuple(tuple
, "k:test_k_code", &value
) < 0)
566 if (value
!= (unsigned long)-0x42)
567 return raiseTestError("test_k_code",
568 "k code returned wrong value for long -0xFFF..000042");
575 #ifdef Py_USING_UNICODE
577 static volatile int x
;
579 /* Test the u and u# codes for PyArg_ParseTuple. May leak memory in case
583 test_u_code(PyObject
*self
)
585 PyObject
*tuple
, *obj
;
589 /* issue4122: Undefined reference to _Py_ascii_whitespace on Windows */
590 /* Just use the macro and check that it compiles */
591 x
= Py_UNICODE_ISSPACE(25);
593 tuple
= PyTuple_New(1);
597 obj
= PyUnicode_Decode("test", strlen("test"),
602 PyTuple_SET_ITEM(tuple
, 0, obj
);
605 if (PyArg_ParseTuple(tuple
, "u:test_u_code", &value
) < 0)
607 if (value
!= PyUnicode_AS_UNICODE(obj
))
608 return raiseTestError("test_u_code",
609 "u code returned wrong value for u'test'");
611 if (PyArg_ParseTuple(tuple
, "u#:test_u_code", &value
, &len
) < 0)
613 if (value
!= PyUnicode_AS_UNICODE(obj
) ||
614 len
!= PyUnicode_GET_SIZE(obj
))
615 return raiseTestError("test_u_code",
616 "u# code returned wrong values for u'test'");
624 test_widechar(PyObject
*self
)
626 #if defined(SIZEOF_WCHAR_T) && (SIZEOF_WCHAR_T == 4)
627 const wchar_t wtext
[2] = {(wchar_t)0x10ABCDu
};
630 const wchar_t wtext
[3] = {(wchar_t)0xDBEAu
, (wchar_t)0xDFCDu
};
633 PyObject
*wide
, *utf8
;
635 wide
= PyUnicode_FromWideChar(wtext
, wtextlen
);
639 utf8
= PyUnicode_FromString("\xf4\x8a\xaf\x8d");
645 if (PyUnicode_GET_SIZE(wide
) != PyUnicode_GET_SIZE(utf8
)) {
648 return raiseTestError("test_widechar",
649 "wide string and utf8 string have different length");
651 if (PyUnicode_Compare(wide
, utf8
)) {
654 if (PyErr_Occurred())
656 return raiseTestError("test_widechar",
657 "wide string and utf8 string are differents");
666 test_empty_argparse(PyObject
*self
)
668 /* Test that formats can begin with '|'. See issue #4720. */
669 PyObject
*tuple
, *dict
= NULL
;
670 static char *kwlist
[] = {NULL
};
672 tuple
= PyTuple_New(0);
675 if ((result
= PyArg_ParseTuple(tuple
, "|:test_empty_argparse")) < 0)
680 result
= PyArg_ParseTupleAndKeywords(tuple
, dict
, "|:test_empty_argparse", kwlist
);
692 codec_incrementalencoder(PyObject
*self
, PyObject
*args
)
694 const char *encoding
, *errors
= NULL
;
695 if (!PyArg_ParseTuple(args
, "s|s:test_incrementalencoder",
698 return PyCodec_IncrementalEncoder(encoding
, errors
);
702 codec_incrementaldecoder(PyObject
*self
, PyObject
*args
)
704 const char *encoding
, *errors
= NULL
;
705 if (!PyArg_ParseTuple(args
, "s|s:test_incrementaldecoder",
708 return PyCodec_IncrementalDecoder(encoding
, errors
);
713 /* Simple test of _PyLong_NumBits and _PyLong_Sign. */
715 test_long_numbits(PyObject
*self
)
721 } testcases
[] = {{0, 0, 0},
730 {0x7fffL
, 15, 1}, /* one Python long digit */
735 {-0xfffffffL
, 28, -1}};
738 for (i
= 0; i
< sizeof(testcases
) / sizeof(struct triple
); ++i
) {
739 PyObject
*plong
= PyLong_FromLong(testcases
[i
].input
);
740 size_t nbits
= _PyLong_NumBits(plong
);
741 int sign
= _PyLong_Sign(plong
);
744 if (nbits
!= testcases
[i
].nbits
)
745 return raiseTestError("test_long_numbits",
746 "wrong result for _PyLong_NumBits");
747 if (sign
!= testcases
[i
].sign
)
748 return raiseTestError("test_long_numbits",
749 "wrong result for _PyLong_Sign");
755 /* Example passing NULLs to PyObject_Str(NULL) and PyObject_Unicode(NULL). */
758 test_null_strings(PyObject
*self
)
760 PyObject
*o1
= PyObject_Str(NULL
), *o2
= PyObject_Unicode(NULL
);
761 PyObject
*tuple
= PyTuple_Pack(2, o1
, o2
);
768 raise_exception(PyObject
*self
, PyObject
*args
)
771 PyObject
*exc_args
, *v
;
774 if (!PyArg_ParseTuple(args
, "Oi:raise_exception",
777 if (!PyExceptionClass_Check(exc
)) {
778 PyErr_Format(PyExc_TypeError
, "an exception class is required");
782 exc_args
= PyTuple_New(num_args
);
783 if (exc_args
== NULL
)
785 for (i
= 0; i
< num_args
; ++i
) {
786 v
= PyInt_FromLong(i
);
791 PyTuple_SET_ITEM(exc_args
, i
, v
);
793 PyErr_SetObject(exc
, exc_args
);
800 /* test_thread_state spawns a thread of its own, and that thread releases
801 * `thread_done` when it's finished. The driver code has to know when the
802 * thread finishes, because the thread uses a PyObject (the callable) that
803 * may go away when the driver finishes. The former lack of this explicit
804 * synchronization caused rare segfaults, so rare that they were seen only
805 * on a Mac buildbot (although they were possible on any box).
807 static PyThread_type_lock thread_done
= NULL
;
810 _make_call(void *callable
)
814 PyGILState_STATE s
= PyGILState_Ensure();
815 rc
= PyObject_CallFunction((PyObject
*)callable
, "");
816 success
= (rc
!= NULL
);
818 PyGILState_Release(s
);
822 /* Same thing, but releases `thread_done` when it returns. This variant
823 * should be called only from threads spawned by test_thread_state().
826 _make_call_from_thread(void *callable
)
828 _make_call(callable
);
829 PyThread_release_lock(thread_done
);
833 test_thread_state(PyObject
*self
, PyObject
*args
)
838 if (!PyArg_ParseTuple(args
, "O:test_thread_state", &fn
))
841 if (!PyCallable_Check(fn
)) {
842 PyErr_Format(PyExc_TypeError
, "'%s' object is not callable",
843 fn
->ob_type
->tp_name
);
847 /* Ensure Python is set up for threading */
848 PyEval_InitThreads();
849 thread_done
= PyThread_allocate_lock();
850 if (thread_done
== NULL
)
851 return PyErr_NoMemory();
852 PyThread_acquire_lock(thread_done
, 1);
854 /* Start a new thread with our callback. */
855 PyThread_start_new_thread(_make_call_from_thread
, fn
);
856 /* Make the callback with the thread lock held by this thread */
857 success
&= _make_call(fn
);
858 /* Do it all again, but this time with the thread-lock released */
859 Py_BEGIN_ALLOW_THREADS
860 success
&= _make_call(fn
);
861 PyThread_acquire_lock(thread_done
, 1); /* wait for thread to finish */
864 /* And once more with and without a thread
865 XXX - should use a lock and work out exactly what we are trying
868 Py_BEGIN_ALLOW_THREADS
869 PyThread_start_new_thread(_make_call_from_thread
, fn
);
870 success
&= _make_call(fn
);
871 PyThread_acquire_lock(thread_done
, 1); /* wait for thread to finish */
874 /* Release lock we acquired above. This is required on HP-UX. */
875 PyThread_release_lock(thread_done
);
877 PyThread_free_lock(thread_done
);
883 /* test Py_AddPendingCalls using threads */
884 static int _pending_callback(void *arg
)
886 /* we assume the argument is callable object to which we own a reference */
887 PyObject
*callable
= (PyObject
*)arg
;
888 PyObject
*r
= PyObject_CallObject(callable
, NULL
);
891 return r
!= NULL
? 0 : -1;
894 /* The following requests n callbacks to _pending_callback. It can be
895 * run from any python thread.
897 PyObject
*pending_threadfunc(PyObject
*self
, PyObject
*arg
)
901 if (PyArg_ParseTuple(arg
, "O", &callable
) == 0)
904 /* create the reference for the callbackwhile we hold the lock */
907 Py_BEGIN_ALLOW_THREADS
908 r
= Py_AddPendingCall(&_pending_callback
, callable
);
912 Py_DECREF(callable
); /* unsuccessful add, destroy the extra reference */
921 /* Some tests of PyString_FromFormat(). This needs more tests. */
923 test_string_from_format(PyObject
*self
, PyObject
*args
)
928 #define CHECK_1_FORMAT(FORMAT, TYPE) \
929 result = PyString_FromFormat(FORMAT, (TYPE)1); \
930 if (result == NULL) \
932 if (strcmp(PyString_AsString(result), "1")) { \
933 msg = FORMAT " failed at 1"; \
938 CHECK_1_FORMAT("%d", int);
939 CHECK_1_FORMAT("%ld", long);
940 /* The z width modifier was added in Python 2.5. */
941 CHECK_1_FORMAT("%zd", Py_ssize_t
);
943 /* The u type code was added in Python 2.5. */
944 CHECK_1_FORMAT("%u", unsigned int);
945 CHECK_1_FORMAT("%lu", unsigned long);
946 CHECK_1_FORMAT("%zu", size_t);
952 return raiseTestError("test_string_from_format", msg
);
954 #undef CHECK_1_FORMAT
957 /* This is here to provide a docstring for test_descr. */
959 test_with_docstring(PyObject
*self
)
964 /* To test the format of tracebacks as printed out. */
966 traceback_print(PyObject
*self
, PyObject
*args
)
972 if (!PyArg_ParseTuple(args
, "OO:traceback_print",
976 result
= PyTraceBack_Print(traceback
, file
);
982 static PyMethodDef TestMethods
[] = {
983 {"raise_exception", raise_exception
, METH_VARARGS
},
984 {"test_config", (PyCFunction
)test_config
, METH_NOARGS
},
985 {"test_list_api", (PyCFunction
)test_list_api
, METH_NOARGS
},
986 {"test_dict_iteration", (PyCFunction
)test_dict_iteration
,METH_NOARGS
},
987 {"test_lazy_hash_inheritance", (PyCFunction
)test_lazy_hash_inheritance
,METH_NOARGS
},
988 {"test_long_api", (PyCFunction
)test_long_api
, METH_NOARGS
},
989 {"test_long_numbits", (PyCFunction
)test_long_numbits
, METH_NOARGS
},
990 {"test_k_code", (PyCFunction
)test_k_code
, METH_NOARGS
},
991 {"test_empty_argparse", (PyCFunction
)test_empty_argparse
,METH_NOARGS
},
992 {"test_null_strings", (PyCFunction
)test_null_strings
, METH_NOARGS
},
993 {"test_string_from_format", (PyCFunction
)test_string_from_format
, METH_NOARGS
},
994 {"test_with_docstring", (PyCFunction
)test_with_docstring
, METH_NOARGS
,
995 PyDoc_STR("This is a pretty normal docstring.")},
997 {"getargs_tuple", getargs_tuple
, METH_VARARGS
},
998 {"getargs_keywords", (PyCFunction
)getargs_keywords
,
999 METH_VARARGS
|METH_KEYWORDS
},
1000 {"getargs_b", getargs_b
, METH_VARARGS
},
1001 {"getargs_B", getargs_B
, METH_VARARGS
},
1002 {"getargs_H", getargs_H
, METH_VARARGS
},
1003 {"getargs_I", getargs_I
, METH_VARARGS
},
1004 {"getargs_k", getargs_k
, METH_VARARGS
},
1005 {"getargs_i", getargs_i
, METH_VARARGS
},
1006 {"getargs_l", getargs_l
, METH_VARARGS
},
1007 {"getargs_n", getargs_n
, METH_VARARGS
},
1008 #ifdef HAVE_LONG_LONG
1009 {"getargs_L", getargs_L
, METH_VARARGS
},
1010 {"getargs_K", getargs_K
, METH_VARARGS
},
1011 {"test_longlong_api", test_longlong_api
, METH_NOARGS
},
1012 {"test_L_code", (PyCFunction
)test_L_code
, METH_NOARGS
},
1013 {"codec_incrementalencoder",
1014 (PyCFunction
)codec_incrementalencoder
, METH_VARARGS
},
1015 {"codec_incrementaldecoder",
1016 (PyCFunction
)codec_incrementaldecoder
, METH_VARARGS
},
1018 #ifdef Py_USING_UNICODE
1019 {"test_u_code", (PyCFunction
)test_u_code
, METH_NOARGS
},
1020 {"test_widechar", (PyCFunction
)test_widechar
, METH_NOARGS
},
1023 {"_test_thread_state", test_thread_state
, METH_VARARGS
},
1024 {"_pending_threadfunc", pending_threadfunc
, METH_VARARGS
},
1026 {"traceback_print", traceback_print
, METH_VARARGS
},
1027 {NULL
, NULL
} /* sentinel */
1030 #define AddSym(d, n, f, v) {PyObject *o = f(v); PyDict_SetItemString(d, n, o); Py_DECREF(o);}
1035 unsigned char ubyte_member
;
1037 unsigned short ushort_member
;
1039 unsigned int uint_member
;
1041 unsigned long ulong_member
;
1043 double double_member
;
1044 #ifdef HAVE_LONG_LONG
1045 PY_LONG_LONG longlong_member
;
1046 unsigned PY_LONG_LONG ulonglong_member
;
1048 } all_structmembers
;
1052 all_structmembers structmembers
;
1053 } test_structmembers
;
1055 static struct PyMemberDef test_members
[] = {
1056 {"T_BOOL", T_BOOL
, offsetof(test_structmembers
, structmembers
.bool_member
), 0, NULL
},
1057 {"T_BYTE", T_BYTE
, offsetof(test_structmembers
, structmembers
.byte_member
), 0, NULL
},
1058 {"T_UBYTE", T_UBYTE
, offsetof(test_structmembers
, structmembers
.ubyte_member
), 0, NULL
},
1059 {"T_SHORT", T_SHORT
, offsetof(test_structmembers
, structmembers
.short_member
), 0, NULL
},
1060 {"T_USHORT", T_USHORT
, offsetof(test_structmembers
, structmembers
.ushort_member
), 0, NULL
},
1061 {"T_INT", T_INT
, offsetof(test_structmembers
, structmembers
.int_member
), 0, NULL
},
1062 {"T_UINT", T_UINT
, offsetof(test_structmembers
, structmembers
.uint_member
), 0, NULL
},
1063 {"T_LONG", T_LONG
, offsetof(test_structmembers
, structmembers
.long_member
), 0, NULL
},
1064 {"T_ULONG", T_ULONG
, offsetof(test_structmembers
, structmembers
.ulong_member
), 0, NULL
},
1065 {"T_FLOAT", T_FLOAT
, offsetof(test_structmembers
, structmembers
.float_member
), 0, NULL
},
1066 {"T_DOUBLE", T_DOUBLE
, offsetof(test_structmembers
, structmembers
.double_member
), 0, NULL
},
1067 #ifdef HAVE_LONG_LONG
1068 {"T_LONGLONG", T_LONGLONG
, offsetof(test_structmembers
, structmembers
.longlong_member
), 0, NULL
},
1069 {"T_ULONGLONG", T_ULONGLONG
, offsetof(test_structmembers
, structmembers
.ulonglong_member
), 0, NULL
},
1076 test_structmembers_new(PyTypeObject
*type
, PyObject
*args
, PyObject
*kwargs
)
1078 static char *keywords
[] = {
1079 "T_BOOL", "T_BYTE", "T_UBYTE", "T_SHORT", "T_USHORT",
1080 "T_INT", "T_UINT", "T_LONG", "T_ULONG",
1081 "T_FLOAT", "T_DOUBLE",
1082 #ifdef HAVE_LONG_LONG
1083 "T_LONGLONG", "T_ULONGLONG",
1086 static char *fmt
= "|bbBhHiIlkfd"
1087 #ifdef HAVE_LONG_LONG
1091 test_structmembers
*ob
;
1092 ob
= PyObject_New(test_structmembers
, type
);
1095 memset(&ob
->structmembers
, 0, sizeof(all_structmembers
));
1096 if (!PyArg_ParseTupleAndKeywords(args
, kwargs
, fmt
, keywords
,
1097 &ob
->structmembers
.bool_member
,
1098 &ob
->structmembers
.byte_member
,
1099 &ob
->structmembers
.ubyte_member
,
1100 &ob
->structmembers
.short_member
,
1101 &ob
->structmembers
.ushort_member
,
1102 &ob
->structmembers
.int_member
,
1103 &ob
->structmembers
.uint_member
,
1104 &ob
->structmembers
.long_member
,
1105 &ob
->structmembers
.ulong_member
,
1106 &ob
->structmembers
.float_member
,
1107 &ob
->structmembers
.double_member
1108 #ifdef HAVE_LONG_LONG
1109 , &ob
->structmembers
.longlong_member
,
1110 &ob
->structmembers
.ulonglong_member
1116 return (PyObject
*)ob
;
1120 test_structmembers_free(PyObject
*ob
)
1125 static PyTypeObject test_structmembersType
= {
1126 PyVarObject_HEAD_INIT(NULL
, 0)
1127 "test_structmembersType",
1128 sizeof(test_structmembers
), /* tp_basicsize */
1129 0, /* tp_itemsize */
1130 test_structmembers_free
, /* destructor tp_dealloc */
1136 0, /* tp_as_number */
1137 0, /* tp_as_sequence */
1138 0, /* tp_as_mapping */
1142 PyObject_GenericGetAttr
, /* tp_getattro */
1143 PyObject_GenericSetAttr
, /* tp_setattro */
1144 0, /* tp_as_buffer */
1146 "Type containing all structmember types",
1147 0, /* traverseproc tp_traverse */
1149 0, /* tp_richcompare */
1150 0, /* tp_weaklistoffset */
1152 0, /* tp_iternext */
1154 test_members
, /* tp_members */
1163 test_structmembers_new
, /* tp_new */
1172 m
= Py_InitModule("_testcapi", TestMethods
);
1176 Py_TYPE(&_HashInheritanceTester_Type
)=&PyType_Type
;
1178 Py_TYPE(&test_structmembersType
)=&PyType_Type
;
1179 Py_INCREF(&test_structmembersType
);
1180 PyModule_AddObject(m
, "test_structmembersType", (PyObject
*)&test_structmembersType
);
1182 PyModule_AddObject(m
, "CHAR_MAX", PyInt_FromLong(CHAR_MAX
));
1183 PyModule_AddObject(m
, "CHAR_MIN", PyInt_FromLong(CHAR_MIN
));
1184 PyModule_AddObject(m
, "UCHAR_MAX", PyInt_FromLong(UCHAR_MAX
));
1185 PyModule_AddObject(m
, "SHRT_MAX", PyInt_FromLong(SHRT_MAX
));
1186 PyModule_AddObject(m
, "SHRT_MIN", PyInt_FromLong(SHRT_MIN
));
1187 PyModule_AddObject(m
, "USHRT_MAX", PyInt_FromLong(USHRT_MAX
));
1188 PyModule_AddObject(m
, "INT_MAX", PyLong_FromLong(INT_MAX
));
1189 PyModule_AddObject(m
, "INT_MIN", PyLong_FromLong(INT_MIN
));
1190 PyModule_AddObject(m
, "UINT_MAX", PyLong_FromUnsignedLong(UINT_MAX
));
1191 PyModule_AddObject(m
, "LONG_MAX", PyInt_FromLong(LONG_MAX
));
1192 PyModule_AddObject(m
, "LONG_MIN", PyInt_FromLong(LONG_MIN
));
1193 PyModule_AddObject(m
, "ULONG_MAX", PyLong_FromUnsignedLong(ULONG_MAX
));
1194 PyModule_AddObject(m
, "FLT_MAX", PyFloat_FromDouble(FLT_MAX
));
1195 PyModule_AddObject(m
, "FLT_MIN", PyFloat_FromDouble(FLT_MIN
));
1196 PyModule_AddObject(m
, "DBL_MAX", PyFloat_FromDouble(DBL_MAX
));
1197 PyModule_AddObject(m
, "DBL_MIN", PyFloat_FromDouble(DBL_MIN
));
1198 PyModule_AddObject(m
, "LLONG_MAX", PyLong_FromLongLong(PY_LLONG_MAX
));
1199 PyModule_AddObject(m
, "LLONG_MIN", PyLong_FromLongLong(PY_LLONG_MIN
));
1200 PyModule_AddObject(m
, "ULLONG_MAX", PyLong_FromUnsignedLongLong(PY_ULLONG_MAX
));
1201 PyModule_AddObject(m
, "PY_SSIZE_T_MAX", PyInt_FromSsize_t(PY_SSIZE_T_MAX
));
1202 PyModule_AddObject(m
, "PY_SSIZE_T_MIN", PyInt_FromSsize_t(PY_SSIZE_T_MIN
));
1203 PyModule_AddObject(m
, "SIZEOF_PYGC_HEAD", PyInt_FromSsize_t(sizeof(PyGC_Head
)));
1205 TestError
= PyErr_NewException("_testcapi.error", NULL
, NULL
);
1206 Py_INCREF(TestError
);
1207 PyModule_AddObject(m
, "error", TestError
);