index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix test for GCC 3.1+ but not strict ANSI C
Christian Heimes
2013-06-24
1
-1/+1
|
\
|
*
Fix test for GCC 3.1+ but not strict ANSI C
Christian Heimes
2013-06-24
1
-1/+1
*
|
merge
Raymond Hettinger
2013-06-23
4
-41/+16
|
\
\
|
*
|
Issue #11016: Don't define macros and constants that are already set by pyport.h
Christian Heimes
2013-06-23
1
-31/+5
|
*
|
Define S_IFMT and S_IFLNK in pyport.h so posixmodule.c can use named constant...
Christian Heimes
2013-06-23
2
-9/+10
|
*
|
Check for correct macro, code uses S_ISDIR().
Christian Heimes
2013-06-23
1
-1/+1
|
|
\
\
|
|
|
/
|
|
*
Check for correct macro, code uses S_ISDIR().
Christian Heimes
2013-06-23
1
-1/+1
*
|
|
Misc improvements to collections.deque()
Raymond Hettinger
2013-06-23
1
-72/+93
|
/
/
*
|
Issue #11016: Detect integer conversion on conversion from Python int to C mo...
Victor Stinner
2013-06-23
1
-13/+27
*
|
merge
Christian Heimes
2013-06-23
2
-42/+53
|
\
\
|
*
\
Merge #18179: reflow paragraphs.
R David Murray
2013-06-23
2
-46/+47
|
|
\
\
|
|
|
/
|
|
*
#18179: reflow paragraphs.
R David Murray
2013-06-23
2
-46/+47
|
*
|
Merge #18179: document the local_hostname parameter.
R David Murray
2013-06-23
2
-8/+18
|
|
\
\
|
|
|
/
|
|
*
#18179: document the local_hostname parameter.
R David Murray
2013-06-23
2
-8/+18
*
|
|
Fix a typo in S_ISDIR, S_ISCHR, S_ISBLK and S_ISREG.
Christian Heimes
2013-06-23
1
-7/+7
|
/
/
*
|
#11390: convert doctest CLI to argparse and add -o and -f options.
R David Murray
2013-06-23
5
-12/+273
*
|
Merge heads
Serhiy Storchaka
2013-06-23
0
-0/+0
|
\
\
|
|
/
|
*
Merge heads
Serhiy Storchaka
2013-06-23
2
-13/+65
|
|
\
*
|
\
Merge heads
Serhiy Storchaka
2013-06-23
2
-13/+65
|
\
\
\
|
*
\
\
Merged fix for issue #18260 from 3.3
Łukasz Langa
2013-06-23
2
-13/+65
|
|
\
\
\
|
|
|
|
/
|
|
|
/
|
|
|
*
|
Fixed issue #18260: configparser TypeError on source name specified as bytes
Łukasz Langa
2013-06-23
2
-13/+65
*
|
|
|
Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raise
Serhiy Storchaka
2013-06-23
3
-1/+6
|
\
\
\
\
|
|
/
/
/
|
/
|
|
/
|
|
|
/
|
|
/
|
|
*
|
Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raise
Serhiy Storchaka
2013-06-23
3
-2/+12
|
|
/
*
|
Solaris' /dev/null is a symlink. The device test now uses stat instead of lst...
Christian Heimes
2013-06-23
1
-4/+7
|
\
\
|
|
/
|
*
Solaris' /dev/null is a symlink. The device test now uses stat instead of lst...
Christian Heimes
2013-06-23
1
-4/+7
*
|
import.c does neither need mode_t nor _mkdir() anymore
Christian Heimes
2013-06-23
1
-8/+0
*
|
Add _stat module to VS project file -- this time with the GUI instead of manu...
Christian Heimes
2013-06-23
2
-2/+5
*
|
add _stat to list of builtin Windows modules
Christian Heimes
2013-06-23
1
-0/+2
*
|
(Merge 3.3) Issue #18135: Fix a possible integer overflow in
Victor Stinner
2013-06-23
2
-10/+20
|
\
\
|
|
/
|
*
Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write()
Victor Stinner
2013-06-23
2
-5/+15
|
*
_ssl.c: strip trailing spaces
Victor Stinner
2013-06-23
1
-5/+5
*
|
(Merge 3.3) Issue #18137: Detect integer overflow on precision in
Victor Stinner
2013-06-23
3
-2/+34
|
\
\
|
|
/
|
*
Issue #18137: Detect integer overflow on precision in float.__format__() and
Victor Stinner
2013-06-23
3
-2/+34
*
|
Issue #11016: Try to fix compilaton of the new _stat.c module on Windows
Victor Stinner
2013-06-22
2
-0/+12
*
|
Merge from 3.3
Andrew Kuchling
2013-06-22
1
-2/+3
|
\
\
|
|
/
|
*
Closes #18220: expand itertools.islice docstring to 2 lines
Andrew Kuchling
2013-06-22
1
-1/+2
|
*
Close #18285: add 'repeat' parameter to docstring for product
Andrew Kuchling
2013-06-22
1
-1/+1
*
|
#18151 Merge from 3.3
Terry Jan Reedy
2013-06-22
2
-24/+98
|
\
\
|
|
/
|
*
#18151, part 2: Silence debug build resource warning for each file opened by
Terry Jan Reedy
2013-06-22
2
-24/+99
*
|
Issue #11016: Add C implementation of the stat module as _stat
Christian Heimes
2013-06-22
9
-23/+679
*
|
Merge from 3.3
Andrew Kuchling
2013-06-22
2
-3/+17
|
\
\
|
|
/
|
*
#18113: avoid segfault if Py_XDECREF triggers code that calls set_panel_userp...
Andrew Kuchling
2013-06-22
2
-3/+17
*
|
... also TLSv1.1 and TLSv1.2
Christian Heimes
2013-06-22
1
-0/+3
*
|
Add my SSL module patches to whatsnew 3.4
Christian Heimes
2013-06-22
1
-0/+12
*
|
BSD: block devices are gone
Christian Heimes
2013-06-22
1
-1/+1
|
\
\
|
|
/
|
*
BSD: block devices are gone
Christian Heimes
2013-06-22
1
-1/+1
*
|
merge for issue #18278
Brett Cannon
2013-06-21
1
-0/+2
|
\
\
|
|
/
|
*
Issue #18278: properly document how the loaders are called for FileFinder
Brett Cannon
2013-06-21
1
-0/+2
*
|
marshal: optimize parsing of empty Unicode strings
Victor Stinner
2013-06-21
1
-12/+17
*
|
Fix test_stat on BSD, /dev/da0 and /dev/ad0 are links
Christian Heimes
2013-06-21
1
-1/+2
|
\
\
|
|
/
[next]