Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
8f5a2d65
Commit
8f5a2d65
authored
Oct 02, 2011
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#13076: fix links to datetime.time.
parent
745f2a9f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
Doc/library/datetime.rst
Doc/library/datetime.rst
+9
-9
No files found.
Doc/library/datetime.rst
View file @
8f5a2d65
...
...
@@ -1164,19 +1164,19 @@ Class attributes:
.. attribute:: time.min
The earliest representable :class:`time`, ``time(0, 0, 0, 0)``.
The earliest representable :class:`
.
time`, ``time(0, 0, 0, 0)``.
.. attribute:: time.max
The latest representable :class:`time`, ``time(23, 59, 59, 999999)``.
The latest representable :class:`
.
time`, ``time(23, 59, 59, 999999)``.
.. attribute:: time.resolution
The smallest possible difference between non-equal :class:`time` objects,
``timedelta(microseconds=1)``, although note that arithmetic on
:class:`time`
objects is not supported.
The smallest possible difference between non-equal :class:`
.
time` objects,
``timedelta(microseconds=1)``, although note that arithmetic on
:class:`.time`
objects is not supported.
Instance attributes (read-only):
...
...
@@ -1203,7 +1203,7 @@ Instance attributes (read-only):
.. attribute:: time.tzinfo
The object passed as the tzinfo argument to the :class:`time` constructor, or
The object passed as the tzinfo argument to the :class:`
.
time` constructor, or
``None`` if none was passed.
...
...
@@ -1234,10 +1234,10 @@ Instance methods:
.. method:: time.replace([hour[, minute[, second[, microsecond[, tzinfo]]]]])
Return a :class:`time` with the same value, except for those attributes given
Return a :class:`
.
time` with the same value, except for those attributes given
new values by whichever keyword arguments are specified. Note that
``tzinfo=None`` can be specified to create a naive :class:`time` from an
aware :class:`time`, without conversion of the time data.
``tzinfo=None`` can be specified to create a naive :class:`
.
time` from an
aware :class:`
.
time`, without conversion of the time data.
.. method:: time.isoformat()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment