diff options
author | Raymond Hettinger <python@rcn.com> | 2009-04-06 22:45:52 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-04-06 22:45:52 (GMT) |
commit | dbd51b5d38ecee7fb2c85c20671ffff37f57ef2c (patch) | |
tree | 59e87140aeeb8cc10ff38b97826d907b7c37bdcb | |
parent | f4cc2c4afec82e83053b861f6a70006fb28bb3e2 (diff) | |
download | cpython-dbd51b5d38ecee7fb2c85c20671ffff37f57ef2c.zip cpython-dbd51b5d38ecee7fb2c85c20671ffff37f57ef2c.tar.gz cpython-dbd51b5d38ecee7fb2c85c20671ffff37f57ef2c.tar.bz2 |
Fix links to Decimal and ttk.
-rw-r--r-- | Doc/whatsnew/3.1.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.1.rst b/Doc/whatsnew/3.1.rst index c1f83f0..eb94761 100644 --- a/Doc/whatsnew/3.1.rst +++ b/Doc/whatsnew/3.1.rst @@ -151,8 +151,8 @@ Some smaller changes made to the core Python language are: (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 +* Add a new module, :mod:`tkinter.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 @@ -167,7 +167,7 @@ Some smaller changes made to the core Python language are: (Contributed by Antoine Pitrou.) -* The :mod:`Decimal` module now supports two new methods to create a +* The :mod:`decimal.Decimal` module now supports two new methods to create a decimal object that from a binary :class:`float`. The conversion is exact but can sometimes be surprising:: |