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.

Author chris.jerdonek
Recipients chris.jerdonek, cvrebert, docs@python, ezio.melotti, mark.dickinson, mikehoy, rhettinger, terry.reedy
Date 2012-09-22.06:10:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348294257.65.0.353267839706.issue12067@psf.upfronthosting.co.za>
In-reply-to
Content
Some minor comments:

-The operators ``<``, ``>``, ``==``, ``>=``, ``<=``, and ``!=`` compare the
+``<``, ``>``, ``==``, ``>=``, ``<=``, and ``!=`` compare the values of two 

I think it reads better to start a sentence (and in this case a paragraph) with a word rather than a symbol.

-values of two objects.  The objects need not have the same type. If both are
+objects. The two objects don't necessarily have to be of the same type. With 

The replacement sentence seems wordier to me.

+(:meth:`__ge__()` reflects :meth:`__lt__()`, etcetera). Builtin numbers compare 
+as expected, even when of different types. Builtin sequences compare 

"Built-in" is hyphenated in the docs.  See, for example, here:

http://docs.python.org/dev/library/functions.html
History
Date User Action Args
2012-09-22 06:10:58chris.jerdoneksetrecipients: + chris.jerdonek, rhettinger, terry.reedy, mark.dickinson, ezio.melotti, cvrebert, docs@python, mikehoy
2012-09-22 06:10:57chris.jerdoneksetmessageid: <1348294257.65.0.353267839706.issue12067@psf.upfronthosting.co.za>
2012-09-22 06:10:56chris.jerdoneklinkissue12067 messages
2012-09-22 06:10:55chris.jerdonekcreate