Home
last modified time | relevance | path

Searched refs:pythonapi (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython2/Lib/ctypes/test/
Dtest_python_api.py21 PyString_FromStringAndSize = pythonapi.PyString_FromStringAndSize
29 pythonapi.PyString_FromString.restype = py_object
30 pythonapi.PyString_FromString.argtypes = (c_char_p,)
34 pyob = pythonapi.PyString_FromString(s)
46 pythonapi.PyInt_FromLong.restype = py_object
47 self.assertEqual(pythonapi.PyInt_FromLong(42), 42)
51 pythonapi.PyInt_AsLong.argtypes = (py_object,)
52 pythonapi.PyInt_AsLong.restype = c_long
54 res = pythonapi.PyInt_AsLong(42)
71 PyOS_snprintf = pythonapi.PyOS_snprintf
Dtest_values.py36 opt = c_int.in_dll(pythonapi, "Py_OptimizeFlag").value
59 ft = FrozenTable.in_dll(pythonapi, "PyImport_FrozenModules")
79 self.assertRaises(ValueError, c_int.in_dll, pythonapi,
/external/python/cpython3/Lib/ctypes/test/
Dtest_python_api.py21 PyBytes_FromStringAndSize = pythonapi.PyBytes_FromStringAndSize
30 pythonapi.PyBytes_FromString.restype = py_object
31 pythonapi.PyBytes_FromString.argtypes = (c_char_p,)
35 pyob = pythonapi.PyBytes_FromString(s)
44 pythonapi.PyLong_FromLong.restype = py_object
45 self.assertEqual(pythonapi.PyLong_FromLong(42), 42)
49 pythonapi.PyLong_AsLong.argtypes = (py_object,)
50 pythonapi.PyLong_AsLong.restype = c_long
52 res = pythonapi.PyLong_AsLong(42)
70 PyOS_snprintf = pythonapi.PyOS_snprintf
Dtest_values.py38 opt = c_int.in_dll(pythonapi, "Py_OptimizeFlag").value
56 ft = FrozenTable.in_dll(pythonapi, "PyImport_FrozenModules")
97 self.assertRaises(ValueError, c_int.in_dll, pythonapi,
/external/python/cpython2/Lib/test/
Dtest_ascii_formatd.py11 from ctypes import pythonapi, create_string_buffer, sizeof, byref, c_double
12 PyOS_ascii_formatd = pythonapi.PyOS_ascii_formatd
Dtest_threading.py172 set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc
Dtest_unicode.py1679 pythonapi, py_object, sizeof,
1686 _PyUnicode_FromFormat = getattr(pythonapi, name)
/external/python/jinja/src/jinja2/
Ddebug.py253 ctypes.pythonapi.Py_DecRef(c_tb_next)
258 ctypes.pythonapi.Py_IncRef(c_tb_next)
/external/python/cpython3/Lib/ctypes/
D__init__.py460 pythonapi = PyDLL("python dll", None, _sys.dllhandle) variable
462 pythonapi = PyDLL("libpython%d.%d.dll" % _sys.version_info[:2]) variable
464 pythonapi = PyDLL(None) variable
/external/python/cpython2/Lib/ctypes/
D__init__.py450 pythonapi = PyDLL("python dll", None, _sys.dllhandle) variable
452 pythonapi = PyDLL("libpython%d.%d.dll" % _sys.version_info[:2]) variable
454 pythonapi = PyDLL(None) variable
/external/python/cpython3/Lib/test/
Dtest_code.py345 py = ctypes.pythonapi
Dtest_embed.py1298 func = getattr(ctypes.pythonapi, name)
Dtest_threading.py190 set_async_exc = ctypes.pythonapi.PyThreadState_SetAsyncExc
Dtest_exceptions.py355 ctypes.pythonapi.PyErr_SetFromWindowsErr(code)
Dtest_bytes.py1029 from ctypes import pythonapi, py_object
1036 PyBytes_FromFormat = pythonapi.PyBytes_FromFormat
Dtest_unicode.py2527 pythonapi, py_object, sizeof,
2531 _PyUnicode_FromFormat = getattr(pythonapi, name)
/external/libchrome/third_party/jinja2/
Ddebug.py309 if hasattr(ctypes.pythonapi, 'Py_InitModule4_64'):
/external/python/cpython2/Doc/library/
Dctypes.rst1107 the type. *pythonapi* is a predefined symbol giving access to the Python C
1110 >>> opt_flag = c_int.in_dll(pythonapi, "Py_OptimizeFlag")
1144 >>> table = FrozenTable.in_dll(pythonapi, "PyImport_FrozenModules")
1522 .. data:: pythonapi
/external/python/cpython3/Doc/library/
Dctypes.rst1061 the type. *pythonapi* is a predefined symbol giving access to the Python C
1064 >>> opt_flag = c_int.in_dll(pythonapi, "Py_OptimizeFlag")
1099 >>> table = FrozenTable.in_dll(pythonapi, "PyImport_FrozenModules")
1517 .. data:: pythonapi
/external/python/cpython2/Doc/whatsnew/
D2.5.rst1724 ``ctypes.pythonapi`` object. This object does *not* release the global
1732 ctypes.pythonapi.PyObject_SetItem(ctypes.py_object(d),
/external/python/cpython3/Doc/whatsnew/
D2.5.rst1725 ``ctypes.pythonapi`` object. This object does *not* release the global
1733 ctypes.pythonapi.PyObject_SetItem(ctypes.py_object(d),