[Python-checkins] Remove extraneous ')' in abstract.h (GH-19146) (#19451)

Miss Islington (bot) webhook-mailer at python.org
Thu Apr 9 14:55:08 EDT 2020


https://github.com/python/cpython/commit/10dabbf8d2c1c929f6ac395e19c64b361bd58fdd
commit: 10dabbf8d2c1c929f6ac395e19c64b361bd58fdd
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-04-09T14:55:00-04:00
summary:

Remove extraneous ')' in abstract.h (GH-19146) (#19451)

(cherry picked from commit ac2cfe6631b77a2005d8f16f034dbb6154f04ab2)

Co-authored-by: Jimmy Yang <codingExpert123 at gmail.com>

files:
M Include/object.h

diff --git a/Include/object.h b/Include/object.h
index cc98d8a1def7e..5558f65687adc 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -29,7 +29,7 @@ of data it contains.  An object's type is fixed when it is created.
 Types themselves are represented as objects; an object contains a
 pointer to the corresponding type object.  The type itself has a type
 pointer pointing to the object representing the type 'type', which
-contains a pointer to itself!).
+contains a pointer to itself!.
 
 Objects do not float around in memory; once allocated an object keeps
 the same size and address.  Objects that must hold variable-size data



More information about the Python-checkins mailing list