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 christian.heimes
Recipients christian.heimes, georg.brandl, larry
Date 2013-11-25.08:19:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385367591.57.0.733954953707.issue19763@psf.upfronthosting.co.za>
In-reply-to
Content
Python's stdlib contains other modules that contain code for older versions of Python. The platform module even contains lines like "os.devnull was added in Python 2.4, so emulate it for earlier". asyncio has backward compatibility code, too. The only old syntax I'd like to add is the super() thing in the test module. They are just tests...

The modified imports and doc test adjustments like

-    >>> mean([1, 2, 3, 4, 4])
-    2.8
+    >>> mean([1, 2, 3, 4, 4]) == 2.8
+    True

would greatly help, though.
History
Date User Action Args
2013-11-25 08:19:51christian.heimessetrecipients: + christian.heimes, georg.brandl, larry
2013-11-25 08:19:51christian.heimessetmessageid: <1385367591.57.0.733954953707.issue19763@psf.upfronthosting.co.za>
2013-11-25 08:19:51christian.heimeslinkissue19763 messages
2013-11-25 08:19:51christian.heimescreate