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: Python developer FAQ grammar error
Type: Stage:
Components: Documentation Versions: Python 3.2
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: docs@python Nosy List: brett.cannon, docs@python, jerry.seutter, rafe.kettler, terry.reedy
Priority: normal Keywords: easy

Created on 2011-01-20 16:34 by jerry.seutter, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (5)
msg126626 - (view) Author: Jerry Seutter (jerry.seutter) * (Python committer) Date: 2011-01-20 16:34
Section 4.1 of the Python FAQ (http://www.python.org/dev/faq/) contains a grammar error:

The sentence I am referring to says: "If you are developing on OS X for Python 2.x and will not be working with the OS X-specific modules from the standard library, then consider using the --without-toolbox-glue flag to faster compilation time."

How about instead: "If you are developing on OS X for Python 2.x and will not be working with the OS X-specific modules from the standard library, then consider using the --without-toolbox-glue flag for a faster compile."

(Note: Taken from the FAQ as of Jan 20, 2011)
msg126795 - (view) Author: Rafe Kettler (rafe.kettler) Date: 2011-01-21 23:37
>for a faster compile
Compile isn't a noun; the most grammatically correct sentences would be "for faster compilation."
msg126802 - (view) Author: Jerry Seutter (jerry.seutter) * (Python committer) Date: 2011-01-22 00:01
I agree with what Rafe said.
msg126806 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2011-01-22 00:30
In general, the website is separate from Python code and documentation and website issues should be sent to webmaster@python.org, not here, as code/doc committers cannot change web pages.

However, this particular page (dev/faq) has being pulled into the (hg) repository as part of expanded docs for developers. It is possible that 'to faster compilation time' has already been corrected. Brett? (and will the web page go away or be replaced?)
msg126813 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2011-01-22 03:05
That entire portion of the FAQ has been removed as it was redundant compared to other parts of the devguide.

Closing as out of date.
History
Date User Action Args
2022-04-11 14:57:11adminsetgithub: 55166
2011-01-22 03:05:52brett.cannonsetstatus: open -> closed

messages: + msg126813
resolution: out of date
nosy: brett.cannon, terry.reedy, jerry.seutter, docs@python, rafe.kettler
2011-01-22 00:30:50terry.reedysetnosy: + terry.reedy, brett.cannon
messages: + msg126806
2011-01-22 00:19:20jerry.seuttersetnosy: jerry.seutter, docs@python, rafe.kettler
title: Python FAQ grammar error -> Python developer FAQ grammar error
2011-01-22 00:01:43jerry.seuttersetnosy: jerry.seutter, docs@python, rafe.kettler
messages: + msg126802
2011-01-21 23:37:24rafe.kettlersetnosy: + rafe.kettler
messages: + msg126795
2011-01-20 16:34:10jerry.seuttercreate