[Python-checkins] CVS: python/dist/src/Include intobject.h,2.15,2.16 listobject.h,2.16,2.17 object.h,2.49,2.50 objimpl.h,2.13,2.14 tupleobject.h,2.19,2.20

Guido van Rossum guido@cnri.reston.va.us
Wed, 1 Mar 2000 10:06:56 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Include
In directory eric:/projects/python/develop/guido/src/Include

Modified Files:
	intobject.h listobject.h object.h objimpl.h tupleobject.h 
Log Message:
Got rid of silly "123456789-..." lines in comments.


Index: intobject.h
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Include/intobject.h,v
retrieving revision 2.15
retrieving revision 2.16
diff -C2 -r2.15 -r2.16
*** intobject.h	1999/10/12 19:54:34	2.15
--- intobject.h	2000/03/01 15:06:53	2.16
***************
*** 39,44 ****
  
  /*
- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
- 
  PyIntObject represents a (long) integer.  This is an immutable object;
  an integer cannot change its value after creation.
--- 39,42 ----
***************
*** 69,74 ****
  
  /*
- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
- 
  False and True are special intobjects used by Boolean expressions.
  All values of type Boolean must point to either of these; but in
--- 67,70 ----

Index: listobject.h
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Include/listobject.h,v
retrieving revision 2.16
retrieving revision 2.17
diff -C2 -r2.16 -r2.17
*** listobject.h	1998/12/04 18:48:05	2.16
--- listobject.h	2000/03/01 15:06:53	2.17
***************
*** 39,44 ****
  
  /*
- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
- 
  Another generally useful object type is an list of object pointers.
  This is a mutable type: the list items can be changed, and items can be
--- 39,42 ----

Index: object.h
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Include/object.h,v
retrieving revision 2.49
retrieving revision 2.50
diff -C2 -r2.49 -r2.50
*** object.h	2000/02/28 15:00:40	2.49
--- object.h	2000/03/01 15:06:53	2.50
***************
*** 39,44 ****
  
  /*
- 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.
--- 39,42 ----
***************
*** 81,86 ****
  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
  */
  
--- 79,82 ----
***************
*** 122,127 ****
  
  /*
- 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()),
--- 118,121 ----
***************
*** 330,335 ****
  
  /*
- 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
--- 324,327 ----
***************
*** 474,479 ****
  
  /*
- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
- 
  More conventions
  ================
--- 466,469 ----
***************
*** 523,528 ****
  it carefully, it may save lots of calls to Py_INCREF() and Py_DECREF() at
  times.
- 
- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
  */
  
--- 513,516 ----

Index: objimpl.h
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Include/objimpl.h,v
retrieving revision 2.13
retrieving revision 2.14
diff -C2 -r2.13 -r2.14
*** objimpl.h	1998/12/04 18:48:13	2.13
--- objimpl.h	2000/03/01 15:06:53	2.14
***************
*** 37,42 ****
  
  /*
- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
- 
  Additional macros for modules that implement new object types.
  You must first include "object.h".
--- 37,40 ----

Index: tupleobject.h
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Include/tupleobject.h,v
retrieving revision 2.19
retrieving revision 2.20
diff -C2 -r2.19 -r2.20
*** tupleobject.h	1998/12/04 18:48:25	2.19
--- tupleobject.h	2000/03/01 15:06:53	2.20
***************
*** 39,44 ****
  
  /*
- 123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
- 
  Another generally useful object type is an tuple of object pointers.
  This is a mutable type: the tuple items can be changed (but not their
--- 39,42 ----