Staging
v0.5.1
https://github.com/python/cpython
Revision 2de5097ba4c50eba90df55696a7b2e74c93834d4 authored by Brett Cannon on 04 December 2020, 23:39:21 UTC, committed by GitHub on 04 December 2020, 23:39:21 UTC
Raise an ImportWarning when the import system falls back on load_module(). As for implementations of load_module(), raise a DeprecationWarning.
1 parent 79c1849
Raw File
Tip revision: 2de5097ba4c50eba90df55696a7b2e74c93834d4 authored by Brett Cannon on 04 December 2020, 23:39:21 UTC
bpo-26131: Deprecate usage of load_module() (GH-23469)
Tip revision: 2de5097
boolobject.h
/* Boolean object interface */

#ifndef Py_BOOLOBJECT_H
#define Py_BOOLOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif


PyAPI_DATA(PyTypeObject) PyBool_Type;

#define PyBool_Check(x) Py_IS_TYPE(x, &PyBool_Type)

/* Py_False and Py_True are the only two bools in existence.
Don't forget to apply Py_INCREF() when returning either!!! */

/* Don't use these directly */
PyAPI_DATA(struct _longobject) _Py_FalseStruct, _Py_TrueStruct;

/* Use these macros */
#define Py_False ((PyObject *) &_Py_FalseStruct)
#define Py_True ((PyObject *) &_Py_TrueStruct)

/* Macros for returning Py_True or Py_False, respectively */
#define Py_RETURN_TRUE return Py_NewRef(Py_True)
#define Py_RETURN_FALSE return Py_NewRef(Py_False)

/* Function to return a bool from a C long */
PyAPI_FUNC(PyObject *) PyBool_FromLong(long);

#ifdef __cplusplus
}
#endif
#endif /* !Py_BOOLOBJECT_H */
back to top