summaryrefslogtreecommitdiffstats
path: root/Include/object.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-03-01 15:06:53 (GMT)
committerGuido van Rossum <guido@python.org>2000-03-01 15:06:53 (GMT)
commitc6e87a2925e41c0847c1eccc994d7f32d069778b (patch)
treeef7409045acc78f249a7d8e6fc00f76e76e8e021 /Include/object.h
parentf1146572dd3c427fcad1129a6909ff45515ac6a3 (diff)
downloadcpython-c6e87a2925e41c0847c1eccc994d7f32d069778b.zip
cpython-c6e87a2925e41c0847c1eccc994d7f32d069778b.tar.gz
cpython-c6e87a2925e41c0847c1eccc994d7f32d069778b.tar.bz2
Got rid of silly "123456789-..." lines in comments.
Diffstat (limited to 'Include/object.h')
-rw-r--r--Include/object.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/Include/object.h b/Include/object.h
index e39f0fa..f718509 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -38,8 +38,6 @@ PERFORMANCE OF THIS SOFTWARE.
/* Object and type object interface */
/*
-123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
-
Objects are structures allocated on the heap. Special rules apply to
the use of objects to ensure they are properly garbage-collected.
Objects are never allocated statically or on the stack; they must be
@@ -80,8 +78,6 @@ type and back.
A standard interface exists for objects that contain an array of items
whose size is determined when the object is allocated.
-
-123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
*/
#ifdef Py_DEBUG
@@ -121,8 +117,6 @@ typedef struct {
/*
-123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
-
Type objects contain a string containing the type name (to help somewhat
in debugging), the allocation parameters (see newobj() and newvarobj()),
and methods for accessing objects of the type. Methods are optional,a
@@ -329,8 +323,6 @@ given type object has a specified feature.
/*
-123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
-
The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
reference counts. Py_DECREF calls the object's deallocator function; for
objects 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. :-( )
/*
-123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
-
More conventions
================
@@ -522,8 +512,6 @@ argument consume a reference count; however this may quickly get
confusing (even the current practice is already confusing). Consider
it carefully, it may save lots of calls to Py_INCREF() and Py_DECREF() at
times.
-
-123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
*/
#ifdef __cplusplus