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
c3b46f75
Commit
c3b46f75
authored
Sep 05, 2015
by
Steve Dower
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backed out changeset: a29b49d57769
parent
a48becb2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
8 deletions
+0
-8
Misc/NEWS
Misc/NEWS
+0
-2
Modules/timemodule.c
Modules/timemodule.c
+0
-6
No files found.
Misc/NEWS
View file @
c3b46f75
...
...
@@ -84,8 +84,6 @@ Library
-
Issue
#
16180
:
Exit
pdb
if
file
has
syntax
error
,
instead
of
trapping
user
in
an
infinite
loop
.
Patch
by
Xavier
de
Gaye
.
-
Issue
#
24917
:
time_strftime
()
Buffer
Over
-
read
.
Patch
by
John
Leitch
.
-
Issue
#
21112
:
Fix
regression
in
unittest
.
expectedFailure
on
subclasses
.
Patch
from
Berker
Peksag
.
...
...
Modules/timemodule.c
View file @
c3b46f75
...
...
@@ -662,12 +662,6 @@ time_strftime(PyObject *self, PyObject *args)
"format %y requires year >= 1900 on AIX"
);
return
NULL
;
}
else
if
(
outbuf
[
1
]
==
'\0'
)
{
PyErr_SetString
(
PyExc_ValueError
,
"Incomplete format string"
);
Py_DECREF
(
format
);
return
NULL
;
}
}
#endif
...
...
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