@@ -38,8 +38,6 @@ PERFORMANCE OF THIS SOFTWARE.
3838/* Object and type object interface */
3939
4040/*
41- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
42-
4341Objects are structures allocated on the heap. Special rules apply to
4442the use of objects to ensure they are properly garbage-collected.
4543Objects are never allocated statically or on the stack; they must be
@@ -80,8 +78,6 @@ type and back.
8078
8179A standard interface exists for objects that contain an array of items
8280whose size is determined when the object is allocated.
83-
84- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
8581*/
8682
8783#ifdef Py_DEBUG
@@ -121,8 +117,6 @@ typedef struct {
121117
122118
123119/*
124- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
125-
126120Type objects contain a string containing the type name (to help somewhat
127121in debugging), the allocation parameters (see newobj() and newvarobj()),
128122and methods for accessing objects of the type. Methods are optional,a
@@ -329,8 +323,6 @@ given type object has a specified feature.
329323
330324
331325/*
332- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
333-
334326The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
335327reference counts. Py_DECREF calls the object's deallocator function; for
336328objects that don't contain references to other objects or heap memory
@@ -473,8 +465,6 @@ object, so I can't just put extern in all cases. :-( )
473465
474466
475467/*
476- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
477-
478468More conventions
479469================
480470
@@ -522,8 +512,6 @@ argument consume a reference count; however this may quickly get
522512confusing (even the current practice is already confusing). Consider
523513it carefully, it may save lots of calls to Py_INCREF() and Py_DECREF() at
524514times.
525-
526- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
527515*/
528516
529517#ifdef __cplusplus
0 commit comments