Skip to content

Commit c6e87a2

Browse files
committed
Got rid of silly "123456789-..." lines in comments.
1 parent f114657 commit c6e87a2

File tree

5 files changed

+0
-22
lines changed

5 files changed

+0
-22
lines changed

Include/intobject.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ PERFORMANCE OF THIS SOFTWARE.
3838
/* Integer object interface */
3939

4040
/*
41-
123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
42-
4341
PyIntObject represents a (long) integer. This is an immutable object;
4442
an integer cannot change its value after creation.
4543
@@ -68,8 +66,6 @@ extern DL_IMPORT(long) PyInt_GetMax Py_PROTO((void));
6866

6967

7068
/*
71-
123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
72-
7369
False and True are special intobjects used by Boolean expressions.
7470
All values of type Boolean must point to either of these; but in
7571
contexts where integers are required they are integers (valued 0 and 1).

Include/listobject.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ PERFORMANCE OF THIS SOFTWARE.
3838
/* List object interface */
3939

4040
/*
41-
123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
42-
4341
Another generally useful object type is an list of object pointers.
4442
This is a mutable type: the list items can be changed, and items can be
4543
added or removed. Out-of-range indices or non-list objects are ignored.

Include/object.h

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -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-
4341
Objects are structures allocated on the heap. Special rules apply to
4442
the use of objects to ensure they are properly garbage-collected.
4543
Objects are never allocated statically or on the stack; they must be
@@ -80,8 +78,6 @@ type and back.
8078
8179
A standard interface exists for objects that contain an array of items
8280
whose 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-
126120
Type objects contain a string containing the type name (to help somewhat
127121
in debugging), the allocation parameters (see newobj() and newvarobj()),
128122
and 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-
334326
The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
335327
reference counts. Py_DECREF calls the object's deallocator function; for
336328
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. :-( )
473465

474466

475467
/*
476-
123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
477-
478468
More conventions
479469
================
480470
@@ -522,8 +512,6 @@ argument consume a reference count; however this may quickly get
522512
confusing (even the current practice is already confusing). Consider
523513
it carefully, it may save lots of calls to Py_INCREF() and Py_DECREF() at
524514
times.
525-
526-
123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
527515
*/
528516

529517
#ifdef __cplusplus

Include/objimpl.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ PERFORMANCE OF THIS SOFTWARE.
3636
******************************************************************/
3737

3838
/*
39-
123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
40-
4139
Additional macros for modules that implement new object types.
4240
You must first include "object.h".
4341

Include/tupleobject.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ PERFORMANCE OF THIS SOFTWARE.
3838
/* Tuple object interface */
3939

4040
/*
41-
123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
42-
4341
Another generally useful object type is an tuple of object pointers.
4442
This is a mutable type: the tuple items can be changed (but not their
4543
number). Out-of-range indices or non-tuple objects are ignored.

0 commit comments

Comments
 (0)