This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Fix for former/latter confusion in Extending documentation
Type: Stage:
Components: Documentation Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: mwh Nosy List: anadelonbrin, loewis, mwh
Priority: normal Keywords: patch

Created on 2003-10-07 03:21 by anadelonbrin, last changed 2022-04-10 16:11 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
extending.tex.diff anadelonbrin, 2003-10-07 03:21 Fix former/latter bug in "Reference Counts" documentation.
Messages (3)
msg44742 - (view) Author: Tony Meyer (anadelonbrin) Date: 2003-10-07 03:21
Section 1.10 ("Reference Counts" in Extending Python) 
has this:
"In C++, the operators new and delete are used with 
essentially the same meaning and we'll restrict the 
following discussion to the latter."

However, the following discussion uses malloc() and free
() (i.e. "the former"), not new and delete.  Either this 
should be corrected to say "the former" (as with the 
attached one line patch), or the whole section should be 
corrected to use new and delete.
msg44743 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2003-11-06 21:17
Logged In: YES 
user_id=21627

Assigning to mwh, who introduced this confusion in
extending.tex 1.23. I don't think "the former" is more
clear, as it might just refer to the keyword "new", as
opposed to they keyword "delete", which would be "the latter".
msg44744 - (view) Author: Michael Hudson (mwh) (Python committer) Date: 2003-11-07 11:46
Logged In: YES 
user_id=6656

Fixed in revision 1.26 of Doc/ext/extending.tex but by
changing the offending text to "restrict the following
discussion to the C case."
History
Date User Action Args
2022-04-10 16:11:39adminsetgithub: 39379
2003-10-07 03:21:38anadelonbrincreate