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
14a0952a
Commit
14a0952a
authored
May 31, 2006
by
Brett Cannon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clarify wording on default values for strptime(); defaults are used when better
values cannot be inferred. Closes bug #1496315.
parent
dd55b0a3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
Doc/lib/libtime.tex
Doc/lib/libtime.tex
+2
-1
No files found.
Doc/lib/libtime.tex
View file @
14a0952a
...
...
@@ -314,7 +314,8 @@ returned by \function{ctime()}. If \var{string} cannot be parsed
according to
\var
{
format
}
,
\exception
{
ValueError
}
is raised. If the
string to be parsed has excess data after parsing,
\exception
{
ValueError
}
is raised. The default values used to fill in
any missing data are
\code
{
(1900, 1, 1, 0, 0, 0, 0, 1, -1)
}
.
any missing data when more accurate values cannot be inferred are
\code
{
(1900, 1, 1, 0, 0, 0, 0, 1, -1)
}
.
Support for the
\code
{
\%
Z
}
directive is based on the values contained in
\code
{
tzname
}
and whether
\code
{
daylight
}
is true. Because of this,
...
...
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