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
*
Issue #23485: Add _PyTime_FromMillisecondsObject() function
Victor Stinner
2015-03-30
2
-6/+25
*
Issue #23485: Fix test_signal, select.select() now retries the syscall if the
Victor Stinner
2015-03-30
1
-3/+17
*
Ignore .rst files in the venv directory.
Brett Cannon
2015-03-30
1
-0/+3
*
PEP 475: on EINTR, retry the function even if the timeout is equals to zero
Victor Stinner
2015-03-30
3
-3/+3
*
Issue #23485: select.select() is now retried automatically with the recomputed
Victor Stinner
2015-03-30
9
-31/+85
*
Partially revert 3603bae63c13 (issue23326) for asyncio.
Serhiy Storchaka
2015-03-30
1
-0/+4
*
#2211: Fix typo, address missed review comment.
R David Murray
2015-03-30
2
-2/+8
*
Merge: #23792: also catch interrupt around pipe.write.
R David Murray
2015-03-30
1
-1/+6
|
\
|
*
#23792: also catch interrupt around pipe.write.
R David Murray
2015-03-30
1
-1/+6
*
|
What's New in Python 3.5: add pep 461 (bytes%args) and 465 (a@b)
Victor Stinner
2015-03-30
1
-3/+42
*
|
Issue #23605: Fix typo in an os.walk() comment
Victor Stinner
2015-03-30
1
-1/+1
*
|
(Merge 3.4) Issue #22585: os.urandom() now releases the GIL when the
Victor Stinner
2015-03-30
1
-6/+14
|
\
\
|
|
/
|
*
Issue #22585: os.urandom() now releases the GIL when the getentropy() is used
Victor Stinner
2015-03-30
1
-6/+14
*
|
Issue #22181: os.urandom() now releases the GIL when the getrandom()
Victor Stinner
2015-03-30
1
-2/+11
*
|
Fix PY_VERSION in Include/patchlevel.h to reflect our post-3.5.0a3 state.
Larry Hastings
2015-03-30
1
-1/+1
*
|
Merge 3.5.0a3 release engineering changes back into trunk.
Larry Hastings
2015-03-30
35
-503/+616
|
\
\
|
*
|
Issue #22117: Try to fix rounding in conversion from Python double to _PyTime_t
Victor Stinner
2015-03-30
1
-1/+2
|
*
|
Issue #23752: _Py_fstat() is now responsible to raise the Python exception
Victor Stinner
2015-03-30
12
-57/+89
|
*
|
Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances.
Serhiy Storchaka
2015-03-30
1
-6/+2
|
|
\
\
|
|
|
/
|
|
*
Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances.
Serhiy Storchaka
2015-03-30
1
-6/+2
|
*
|
Issue #23783: Fixed memory leak in PyObject_ClearWeakRefs() in case of
Serhiy Storchaka
2015-03-30
1
-7/+4
|
|
\
\
|
|
|
/
|
|
*
Issue #23783: Fixed memory leak in PyObject_ClearWeakRefs() in case of
Serhiy Storchaka
2015-03-30
1
-7/+4
|
*
|
Issue #23466: %c, %o, %x, and %X in bytes formatting now raise TypeError on
Serhiy Storchaka
2015-03-30
3
-27/+76
|
*
|
Issue #23171: csv.Writer.writerow() now supports arbitrary iterables.
Serhiy Storchaka
2015-03-30
5
-46/+54
|
*
|
Issue #22117: Remove _PyTime_ROUND_DOWN and _PyTime_ROUND_UP rounding methods
Victor Stinner
2015-03-30
4
-110/+20
|
*
|
Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILING
Victor Stinner
2015-03-30
6
-18/+22
|
*
|
Issue #22117: Add _PyTime_ROUND_CEILING rounding method for timestamps
Victor Stinner
2015-03-30
4
-6/+68
|
*
|
Merge: #23745: handle duplicate MIME parameter names in new parser.
R David Murray
2015-03-30
3
-7/+139
|
|
\
\
|
|
|
/
|
|
*
#23745: handle duplicate MIME parameter names in new parser.
R David Murray
2015-03-30
3
-7/+139
|
*
|
Issue #23752: When built from an existing file descriptor, io.FileIO() now only
Victor Stinner
2015-03-30
2
-24/+26
|
*
|
Issue #22117: Add assertions to _PyTime_AsTimeval() and _PyTime_AsTimespec() to
Victor Stinner
2015-03-30
1
-0/+4
|
*
|
Issue #22117: Fix usage of _PyTime_AsTimeval()
Victor Stinner
2015-03-30
6
-20/+29
|
*
|
Issue #23694: Fix usage of _Py_open() in the _posixsubprocess module
Victor Stinner
2015-03-30
1
-2/+1
|
*
|
Issue #22117: Fix rounding of fromtimestamp() methods of datetime.datetime and
Victor Stinner
2015-03-29
1
-2/+3
|
*
|
Issue #22117: Fix os.utime(), it now rounds the timestamp towards minus
Victor Stinner
2015-03-29
2
-2/+5
|
*
|
Issue #22117: Fix rounding and implement _PyTime_ROUND_FLOOR in:
Victor Stinner
2015-03-29
2
-26/+22
|
*
|
Issue #22117: Cleanup pytime.c/.h
Victor Stinner
2015-03-29
2
-44/+42
|
*
|
Issue #22117: Use the _PyTime_t API in _datetime.datetime() constructor
Victor Stinner
2015-03-29
4
-124/+35
|
*
|
Issue #22390: test.regrtest now emits a warning if temporary files or
Serhiy Storchaka
2015-03-29
2
-15/+14
|
|
\
\
|
|
|
/
|
|
*
Issue #22390: test.regrtest now emits a warning if temporary files or
Serhiy Storchaka
2015-03-29
2
-15/+14
*
|
|
Added tag v3.5.0a3 for changeset 82656e28b5e5
Larry Hastings
2015-03-29
1
-0/+1
*
|
|
Release bump for Python 3.5.0a3.
v3.5.0a3
Larry Hastings
2015-03-29
4
-5/+5
*
|
|
Regenerated pydoc topics and minor doc fixes for 3.5.0a3.
Larry Hastings
2015-03-29
3
-8/+18
|
/
/
*
|
Issue #14260: The groupindex attribute of regular expression pattern object
Serhiy Storchaka
2015-03-29
5
-5/+31
*
|
#2211: properly document the Morsel behavior changes.
R David Murray
2015-03-29
4
-12/+55
*
|
merge 3.4 (#23801)
Benjamin Peterson
2015-03-29
3
-2/+29
|
\
\
|
|
/
|
*
Closes #23801 - Ignore entire preamble to multipart in cgi.FieldStorage
Donald Stufft
2015-03-29
3
-2/+29
*
|
Merge: #23792: Ignore KeyboardInterrupt when the pydoc pager is active.
R David Murray
2015-03-29
2
-3/+14
|
\
\
|
|
/
|
*
#23792: Ignore KeyboardInterrupt when the pydoc pager is active.
R David Murray
2015-03-29
2
-3/+14
*
|
Added explicit tests for issue #23803.
Serhiy Storchaka
2015-03-29
1
-0/+2
|
\
\
|
|
/
[next]