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
909a6f62
Commit
909a6f62
authored
Mar 18, 2017
by
Marco Buttu
Committed by
Berker Peksag
Mar 18, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-27200: Fix doctests in programming.rst and datetime.rst (#401)
parent
993d4b34
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
5 deletions
+10
-5
Doc/conf.py
Doc/conf.py
+1
-0
Doc/faq/programming.rst
Doc/faq/programming.rst
+2
-2
Doc/includes/tzinfo_examples.py
Doc/includes/tzinfo_examples.py
+0
-0
Doc/library/datetime.rst
Doc/library/datetime.rst
+7
-3
No files found.
Doc/conf.py
View file @
909a6f62
...
...
@@ -8,6 +8,7 @@
import
sys
,
os
,
time
sys
.
path
.
append
(
os
.
path
.
abspath
(
'tools/extensions'
))
sys
.
path
.
append
(
os
.
path
.
abspath
(
'includes'
))
# General configuration
# ---------------------
...
...
Doc/faq/programming.rst
View file @
909a6f62
...
...
@@ -1849,7 +1849,7 @@ containing statements like ::
will continue to work with the old version of the imported objects. If the
module contains class definitions, existing class instances will *not* be
updated to use the new class definition. This can result in the following
paradoxical behaviour:
paradoxical behaviour:
:
>>> import importlib
>>> import cls
...
...
@@ -1860,7 +1860,7 @@ paradoxical behaviour:
False
The nature of the problem is made clear if you print out the "identity" of the
class objects:
class objects:
:
>>> hex(id(c.__class__))
'0x7352a0'
...
...
Doc/includes/tzinfo
-
examples.py
→
Doc/includes/tzinfo
_
examples.py
View file @
909a6f62
File moved
Doc/library/datetime.rst
View file @
909a6f62
...
...
@@ -1221,7 +1221,7 @@ Instance methods:
>>> from datetime import datetime
>>> datetime.now().isoformat(timespec='minutes')
>>> datetime.now().isoformat(timespec='minutes')
# doctest: +SKIP
'2002-12-25T00:00'
>>> dt = datetime(2015, 1, 1, 12, 30, 59, 0)
>>> dt.isoformat(timespec='microseconds')
...
...
@@ -1781,9 +1781,11 @@ There is one more :class:`tzinfo` method that a subclass may wish to override:
else:
return dt
Example :class:`tzinfo` classes:
In the following :download:`tzinfo_examples.py
<../includes/tzinfo_examples.py>` file there are some examples of
:class:`tzinfo` classes:
.. literalinclude:: ../includes/tzinfo
-
examples.py
.. literalinclude:: ../includes/tzinfo
_
examples.py
Note that there are unavoidable subtleties twice per year in a :class:`tzinfo`
subclass accounting for both standard and daylight time, at the DST transition
...
...
@@ -1804,6 +1806,8 @@ When DST starts (the "start" line), the local wall clock leaps from 1:59 to
``astimezone(Eastern)`` won't deliver a result with ``hour == 2`` on the day DST
begins. For example, at the Spring forward transition of 2016, we get
>>> from datetime import datetime, timezone
>>> from tzinfo_examples import HOUR, Eastern
>>> u0 = datetime(2016, 3, 13, 5, tzinfo=timezone.utc)
>>> for i in range(4):
... u = u0 + i*HOUR
...
...
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