Branch: refs/heads/2.7 Home: https://github.com/python/cpython Commit: 9436bbd87b7eed18dec4c32f25b88452fe282e1c https://github.com/python/cpython/commit/9436bbd87b7eed18dec4c32f25b88452fe282e1c Author: INADA Naoki <methane at users.noreply.github.com> Date: 2017年02月21日 (2017年2月21日) Changed paths: M Doc/extending/newtypes.rst M Doc/includes/noddy.c M Doc/includes/noddy2.c M Doc/includes/noddy3.c M Doc/includes/noddy4.c M Doc/includes/setup.py M Doc/includes/shoddy.c Log Message: ----------- bpo-29165: doc: make extending/newtypes more Python 3 friendly (GH-211) * Use PyVarObject_HEAD_INIT instead of PyObject_HEAD_INIT on type struct header. * Backport many minor fixes from Python 3 doc to minimize diff.