Georg Brandl <[EMAIL PROTECTED]> added the comment:
This can be seen as a reminder for #1717.
I've "fixed" the whatsnew in r67606.
--
assignee: georg.brandl -> gvanrossum
nosy: +gvanrossum
resolution: -> fixed
status: open -> closed
superseder: -> Get rid of more refercenes to __cmp__
New submission from Mike Watkins <[EMAIL PROTECTED]>:
What's new in 3.0 documentation says cmp() function is gone, yet it
isn't:
>>> sys.version_info; cmp(1,1); cmp(1,2); cmp(2,1)
(3, 0, 0, 'final', 0)
0
-1
1
--
assignee: georg.brandl
components: Documentation
messages: 77093
nosy: geo