~ubuntu-branches/ubuntu/precise/python3.2/precise-proposed

« back to all changes in this revision

Viewing changes to Include/object.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-03-09 18:40:39 UTC
  • mfrom: (30.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20120309184039-j3yk2emxr1plyo21
Tags: 3.2.3~rc1-1
* Python 3.2.3 release candidate 1.
* Update to 20120309 from the 3.2 branch.
* Fix libpython.a symlink. Closes: #660146.
* Build-depend on xauth.
* Run the gdb tests for the debug build only.

Show diffs side-by-side

added added

removed removed

Lines of Context:
449
449
#ifndef Py_LIMITED_API
450
450
PyAPI_FUNC(PyObject *) _PyType_Lookup(PyTypeObject *, PyObject *);
451
451
PyAPI_FUNC(PyObject *) _PyObject_LookupSpecial(PyObject *, char *, PyObject **);
 
452
PyAPI_FUNC(PyTypeObject *) _PyType_CalculateMetaclass(PyTypeObject *, PyObject *);
452
453
#endif
453
454
PyAPI_FUNC(unsigned int) PyType_ClearCache(void);
454
455
PyAPI_FUNC(void) PyType_Modified(PyTypeObject *);
516
517
PyAPI_FUNC(Py_hash_t) _Py_HashPointer(void*);
517
518
#endif
518
519
 
 
520
typedef struct {
 
521
    Py_hash_t prefix;
 
522
    Py_hash_t suffix;
 
523
} _Py_HashSecret_t;
 
524
PyAPI_DATA(_Py_HashSecret_t) _Py_HashSecret;
 
525
 
 
526
#ifdef Py_DEBUG
 
527
PyAPI_DATA(int) _Py_HashSecret_Initialized;
 
528
#endif
 
529
 
519
530
/* Helper for passing objects to printf and the like */
520
531
#define PyObject_REPR(obj) _PyUnicode_AsString(PyObject_Repr(obj))
521
532