diff options
author | Brett Cannon <bcannon@gmail.com> | 2009-01-29 04:10:21 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2009-01-29 04:10:21 (GMT) |
commit | e1327f71cf619f65eb81b7c31089611bc71ffe00 (patch) | |
tree | 075d376916a70e9b0015a9748974e676bfc2615b /Doc/library/datetime.rst | |
parent | 19f8bd2834196b964568c07e5f159c516431b4b5 (diff) | |
download | cpython-e1327f71cf619f65eb81b7c31089611bc71ffe00.zip cpython-e1327f71cf619f65eb81b7c31089611bc71ffe00.tar.gz cpython-e1327f71cf619f65eb81b7c31089611bc71ffe00.tar.bz2 |
Merged revisions 69078-69080 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r69078 | brett.cannon | 2009-01-28 16:54:11 -0800 (Wed, 28 Jan 2009) | 2 lines
Clarify some __del__ stuff.
........
r69079 | brett.cannon | 2009-01-28 16:54:32 -0800 (Wed, 28 Jan 2009) | 2 lines
Minor spelling mistake in datetime docs.
........
r69080 | brett.cannon | 2009-01-28 16:55:33 -0800 (Wed, 28 Jan 2009) | 2 lines
Ignore .pyc and .pyo files.
........
Diffstat (limited to 'Doc/library/datetime.rst')
-rw-r--r-- | Doc/library/datetime.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst index e25d042..f082726 100644 --- a/Doc/library/datetime.rst +++ b/Doc/library/datetime.rst @@ -1266,7 +1266,7 @@ Example: :class:`tzinfo` Objects ----------------------- -:class:`tzinfo` is an abstract base clase, meaning that this class should not be +:class:`tzinfo` is an abstract base class, meaning that this class should not be instantiated directly. You need to derive a concrete subclass, and (at least) supply implementations of the standard :class:`tzinfo` methods needed by the :class:`datetime` methods you use. The :mod:`datetime` module does not supply |