~pythonregexp2.7/python/issue2636-12

« back to all changes in this revision

Viewing changes to Objects/object.c

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-06-09 14:52:42 UTC
  • mfrom: (39033.1.3 Regexp-2.6)
  • Revision ID: darklord@timehorse.com-20080609145242-9m268zc6u87rp1vp
Merged in changes from the core Regexp branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1986
1986
        if (PyType_Ready(&PyString_Type) < 0)
1987
1987
                Py_FatalError("Can't initialize 'str'");
1988
1988
 
1989
 
        if (PyType_Ready(&PyBytes_Type) < 0)
 
1989
        if (PyType_Ready(&PyByteArray_Type) < 0)
1990
1990
                Py_FatalError("Can't initialize 'bytes'");
1991
1991
 
1992
1992
        if (PyType_Ready(&PyList_Type) < 0)