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
ad4e11e1
Commit
ad4e11e1
authored
Sep 30, 2006
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #1566663: remove obsolete example from datetime docs.
(backport from rev. 52063)
parent
506cc189
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
16 deletions
+20
-16
Doc/lib/libdatetime.tex
Doc/lib/libdatetime.tex
+18
-16
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Doc/lib/libdatetime.tex
View file @
ad4e11e1
...
...
@@ -1421,19 +1421,21 @@ The exact range of years for which \method{strftime()} works also
varies across platforms. Regardless of platform, years before 1900
cannot be used.
\subsection
{
Examples
}
\subsubsection
{
Creating Datetime Objects from Formatted Strings
}
The
\class
{
datetime
}
class does not directly support parsing formatted time
strings. You can use
\function
{
time.strptime
}
to do the parsing and create
a
\class
{
datetime
}
object from the tuple it returns:
\begin{verbatim}
>>> s = "2005-12-06T12:13:14"
>>> from datetime import datetime
>>> from time import strptime
>>> datetime(*strptime(s, "
%Y-%m-%dT%H:%M:%S")[0:6])
datetime.datetime(2005, 12, 6, 12, 13, 14)
\end{verbatim}
%%% This example is obsolete, since strptime is now supported by datetime.
%
% \subsection{Examples}
%
% \subsubsection{Creating Datetime Objects from Formatted Strings}
%
% The \class{datetime} class does not directly support parsing formatted time
% strings. You can use \function{time.strptime} to do the parsing and create
% a \class{datetime} object from the tuple it returns:
%
% \begin{verbatim}
% >>> s = "2005-12-06T12:13:14"
% >>> from datetime import datetime
% >>> from time import strptime
% >>> datetime(*strptime(s, "%Y-%m-%dT%H:%M:%S")[0:6])
% datetime.datetime(2005, 12, 6, 12, 13, 14)
% \end{verbatim}
%
Misc/NEWS
View file @
ad4e11e1
...
...
@@ -151,6 +151,8 @@ Tests
Documentation
-------------
- Bug #1566663: remove obsolete example from datetime docs.
- Bug #1541682: Fix example in the "Refcount details" API docs.
Additionally, remove a faulty example showing PySequence_SetItem applied
to a newly created list object and add notes that this isn'
t
a
good
idea
.
...
...
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