[Python-checkins] r88163 - python/branches/py3k/Doc/whatsnew/3.2.rst
raymond.hettinger
python-checkins at python.org
Mon Jan 24 19:19:01 CET 2011
Author: raymond.hettinger
Date: Mon Jan 24 19:19:01 2011
New Revision: 88163
Log:
Typos.
Modified:
python/branches/py3k/Doc/whatsnew/3.2.rst
Modified: python/branches/py3k/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.2.rst (original)
+++ python/branches/py3k/Doc/whatsnew/3.2.rst Mon Jan 24 19:19:01 2011
@@ -984,10 +984,10 @@
class Temperature(metaclass=ABCMeta):
@abc.abstractclassmethod
- def from_farenheit(self, t):
+ def from_fahrenheit(self, t):
...
@abc.abstractclassmethod
- def from_celsium(self, t):
+ def from_celsius(self, t):
...
(Patch submitted by Daniel Urban; :issue:`5867`.)
More information about the Python-checkins
mailing list