The great renaming, phase two: all header files have been updated to

use the new names exclusively, and the linker will see the new names.
Files that import "Python.h" also only see the new names.  Files that
import "allobjects.h" will continue to be able to use the old names,
due to the inclusion (in allobjects.h) of "rename2.h".
This commit is contained in:
Guido van Rossum 1995-01-12 11:45:45 +00:00
parent 94390ec2a6
commit caa6380886
48 changed files with 982 additions and 579 deletions

View file

@ -31,23 +31,23 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Float object interface */
/*
floatobject represents a (double precision) floating point number.
PyFloatObject represents a (double precision) floating point number.
*/
typedef struct {
OB_HEAD
PyObject_HEAD
double ob_fval;
} floatobject;
} PyFloatObject;
extern DL_IMPORT typeobject Floattype;
extern DL_IMPORT PyTypeObject PyFloat_Type;
#define is_floatobject(op) ((op)->ob_type == &Floattype)
#define PyFloat_Check(op) ((op)->ob_type == &PyFloat_Type)
extern object *newfloatobject PROTO((double));
extern double getfloatvalue PROTO((object *));
extern PyObject *PyFloat_FromDouble Py_PROTO((double));
extern double PyFloat_AsDouble Py_PROTO((PyObject *));
/* Macro, trading safety for speed */
#define GETFLOATVALUE(op) ((op)->ob_fval)
#define PyFloat_AS_DOUBLE(op) ((op)->ob_fval)
#ifdef __cplusplus
}