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

« back to all changes in this revision

Viewing changes to Objects/object.c

  • 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:
754
754
    return -1;
755
755
}
756
756
 
 
757
_Py_HashSecret_t _Py_HashSecret;
 
758
 
757
759
Py_hash_t
758
760
PyObject_Hash(PyObject *v)
759
761
{
1625
1627
    if (PyType_Ready(&PyWrapperDescr_Type) < 0)
1626
1628
        Py_FatalError("Can't initialize wrapper type");
1627
1629
 
 
1630
    if (PyType_Ready(&_PyMethodWrapper_Type) < 0)
 
1631
        Py_FatalError("Can't initialize method wrapper type");
 
1632
 
1628
1633
    if (PyType_Ready(&PyEllipsis_Type) < 0)
1629
1634
        Py_FatalError("Can't initialize ellipsis type");
1630
1635