diff options
author | Marc-André Lemburg <mal@egenix.com> | 2007-01-16 13:03:06 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2007-01-16 13:03:06 (GMT) |
commit | fa3d08b4a92d8af3ec458137393b151a1a0b4391 (patch) | |
tree | b7433ffc9cdf291c3a6bd83c94bfa5dbbb416e02 | |
parent | b3d8a06a462ed573e1d32991d6cefb74ef358fd4 (diff) | |
download | cpython-fa3d08b4a92d8af3ec458137393b151a1a0b4391.zip cpython-fa3d08b4a92d8af3ec458137393b151a1a0b4391.tar.gz cpython-fa3d08b4a92d8af3ec458137393b151a1a0b4391.tar.bz2 |
Add news items for the recent pybench and platform changes.
-rw-r--r-- | Misc/NEWS | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -109,6 +109,14 @@ Core and builtins Library ------- +- Changed platform module API python_version_tuple() to actually + return a tuple (it used to return a list) + +- Added new platform module APIs python_branch(), python_revision(), + python_implementation() and linux_distribution() + +- Added support for IronPython and Jython to the platform module + - The sets module has been deprecated. Use the built-in set/frozenset types instead. @@ -376,6 +384,20 @@ Tests number properly. +Tools +----- + +- Added IronPython and Jython support to pybench (part of which + was patch #1563844) + +- Made some minor changes to pybench output to allow the user + to see which Python version is running pybench + +- Added support for the new platform module feature + platform.python_implementation(); this will now be saved + in the benchmark pickle + + Documentation ------------- |