[Python-checkins] r71147 - python/branches/py3k/Doc/whatsnew/3.1.rst
raymond.hettinger
python-checkins at python.org
Sat Apr 4 15:13:56 CEST 2009
Author: raymond.hettinger
Date: Sat Apr 4 15:13:56 2009
New Revision: 71147
Log:
Remove minor entry. Add the ttk module.
Modified:
python/branches/py3k/Doc/whatsnew/3.1.rst
Modified: python/branches/py3k/Doc/whatsnew/3.1.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.1.rst (original)
+++ python/branches/py3k/Doc/whatsnew/3.1.rst Sat Apr 4 15:13:56 2009
@@ -93,8 +93,8 @@
.. seealso::
:pep:`372` - Ordered Dictionaries
- PEP written by Armin Ronacher and Raymond Hettinger; implemented by
- Raymond Hettinger
+ PEP written by Armin Ronacher and Raymond Hettinger. Implementation
+ written by Raymond Hettinger.
PEP 378: Format Specifier for Thousands Separator
=================================================
@@ -151,6 +151,13 @@
(Contributed by Raymond Hettinger; :issue:`1696199`.)
+* Add a new module, :mod:`ttk` for access to the Tk themed widget set. The
+ basic idea of ttk is to separate, to the extent possible, the code
+ implementing a widget's behavior from the code implementing its appearance.
+
+ (Contributed by Kevin Walzer and Guilherme Polo; :issue:`2618` and
+ :issue:`2983`.)
+
* The :class:`gzip.GzipFile` and :class:`bz2.BZ2File` classs now support
the context manager protocol.
@@ -191,11 +198,6 @@
(Contributed by Raymond Hettinger.)
-* :class:`collections.deque` objects now have a read-only attribute
- called *maxlen*.
-
- (Contributed by Raymond Hettinger.)
-
* :func:`collections.namedtuple` now supports a keyword argument
*rename* which lets invalid fieldnames be automatically converted to
positional names in the form _0, _1, etc. This is useful when
More information about the Python-checkins
mailing list