- 3822093 Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath. by Serhiy Storchaka · 10 years ago
- dd83bd2 Issue #23618: Fix internal_connect_select() by Victor Stinner · 10 years ago
- 416f2e6 Issue #23618: internal_connect_select() now waits also for error events by Victor Stinner · 10 years ago
- e6951c6 Issue #23618: Refactor internal_select() to prepare socket.connect() for EINTR by Victor Stinner · 10 years ago
- 391fa71 Issue #23618: Refactor the _socket module by Victor Stinner · 10 years ago
- eb011cb What's New in Python 3.5, PEP 475: mention modified signal functions by Victor Stinner · 10 years ago
- 58e4134 Issue #23611: Serializing more "lookupable" objects (such as unbound methods by Serhiy Storchaka · 10 years ago
- 72e731c Issue #13583: sqlite3.Row now supports slice indexing. by Serhiy Storchaka · 10 years ago
- 80d84c8 Merge heads by Serhiy Storchaka · 10 years ago
- d5d818d Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings. by Serhiy Storchaka · 10 years ago
- bfe1824 Issue #18473: Fixed 2to3 and 3to2 compatible pickle mappings. by Serhiy Storchaka · 10 years ago
- b310173 Issue #23485: Enhance and update selectors doc and test_selectors by Victor Stinner · 10 years ago
- 45ca48b Issue #23485: select.devpoll.poll() is now retried when interrupted by a signal by Victor Stinner · 10 years ago
- 4448c08 Issue #23485: select.kqueue.control() is now retried when interrupted by a signal by Victor Stinner · 10 years ago
- b6faf0d Fix typo in Doc/whatsnew/3.5.rst. by Berker Peksag · 10 years ago
- c86f252 merge by Raymond Hettinger · 10 years ago
- c43a666 Issue #23729: Improve docs for ElementTree namespace parsing by Raymond Hettinger · 10 years ago
- 41eba22 Issue #23485: select.epoll.poll() is now retried when interrupted by a signal by Victor Stinner · 10 years ago
- 3c7d6e0 Issue #23485: select.poll.poll() is now retried when interrupted by a signal by Victor Stinner · 10 years ago
- fa09beb Issue #23485: Add _PyTime_FromMillisecondsObject() function by Victor Stinner · 10 years ago
- 749a6a8 Issue #23485: Fix test_signal, select.select() now retries the syscall if the by Victor Stinner · 10 years ago
- 9b16666 Ignore .rst files in the venv directory. by Brett Cannon · 10 years ago
- 6aa446c PEP 475: on EINTR, retry the function even if the timeout is equals to zero by Victor Stinner · 10 years ago
- f70e1ca Issue #23485: select.select() is now retried automatically with the recomputed by Victor Stinner · 10 years ago
- 3f5d48b Partially revert 3603bae63c13 (issue23326) for asyncio. by Serhiy Storchaka · 10 years ago
- ba6ea9b #2211: Fix typo, address missed review comment. by R David Murray · 10 years ago
- c156e51 Merge: #23792: also catch interrupt around pipe.write. by R David Murray · 10 years ago
- e7f5e14 #23792: also catch interrupt around pipe.write. by R David Murray · 10 years ago
- 93692bb What's New in Python 3.5: add pep 461 (bytes%args) and 465 (a@b) by Victor Stinner · 10 years ago
- 5fdde71 Issue #23605: Fix typo in an os.walk() comment by Victor Stinner · 10 years ago
- 81c6df5 (Merge 3.4) Issue #22585: os.urandom() now releases the GIL when the by Victor Stinner · 10 years ago
- 9aa1331 Issue #22585: os.urandom() now releases the GIL when the getentropy() is used by Victor Stinner · 10 years ago
- 79b74ae Issue #22181: os.urandom() now releases the GIL when the getrandom() by Victor Stinner · 10 years ago
- a52f31d Fix PY_VERSION in Include/patchlevel.h to reflect our post-3.5.0a3 state. by Larry Hastings · 10 years ago
- 09dab7a Merge 3.5.0a3 release engineering changes back into trunk. by Larry Hastings · 10 years ago
- 45cff0c Issue #22117: Try to fix rounding in conversion from Python double to _PyTime_t by Victor Stinner · 10 years ago
- e134a7f Issue #23752: _Py_fstat() is now responsible to raise the Python exception by Victor Stinner · 10 years ago
- 2e1c4e5 Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances. by Serhiy Storchaka · 10 years ago
- 04d09eb Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances. by Serhiy Storchaka · 10 years ago
- be1c60c Issue #23783: Fixed memory leak in PyObject_ClearWeakRefs() in case of by Serhiy Storchaka · 10 years ago
- 4aa8679 Issue #23783: Fixed memory leak in PyObject_ClearWeakRefs() in case of by Serhiy Storchaka · 10 years ago
- 2c7b5a9 Issue #23466: %c, %o, %x, and %X in bytes formatting now raise TypeError on by Serhiy Storchaka · 10 years ago
- 7901b48 Issue #23171: csv.Writer.writerow() now supports arbitrary iterables. by Serhiy Storchaka · 10 years ago
- a695f83 Issue #22117: Remove _PyTime_ROUND_DOWN and _PyTime_ROUND_UP rounding methods by Victor Stinner · 10 years ago
- 7d0325d #23745: handle duplicate MIME parameter names in new parser. by R David Murray · 10 years ago
- 869e177 Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILING by Victor Stinner · 10 years ago
- bcdd777 Issue #22117: Add _PyTime_ROUND_CEILING rounding method for timestamps by Victor Stinner · 10 years ago
- c4bb599 Merge: #23745: handle duplicate MIME parameter names in new parser. by R David Murray · 10 years ago
- 520bddf Issue #23752: When built from an existing file descriptor, io.FileIO() now only by Victor Stinner · 10 years ago
- edddf99 Issue #22117: Add assertions to _PyTime_AsTimeval() and _PyTime_AsTimespec() to by Victor Stinner · 10 years ago
- ea9c0dd Issue #22117: Fix usage of _PyTime_AsTimeval() by Victor Stinner · 10 years ago
- 160e819 Issue #23694: Fix usage of _Py_open() in the _posixsubprocess module by Victor Stinner · 10 years ago
- e4a994d Issue #22117: Fix rounding of fromtimestamp() methods of datetime.datetime and by Victor Stinner · 10 years ago
- dca028b Issue #22117: Fix os.utime(), it now rounds the timestamp towards minus by Victor Stinner · 10 years ago
- f81f0f9 Issue #22117: Fix rounding and implement _PyTime_ROUND_FLOOR in: by Victor Stinner · 10 years ago
- 7362403 Added tag v3.5.0a3 for changeset 82656e28b5e5 by Larry Hastings · 10 years ago
- 02d1db9 Release bump for Python 3.5.0a3. by Larry Hastings · 10 years ago
- b2c2dc3 Regenerated pydoc topics and minor doc fixes for 3.5.0a3. by Larry Hastings · 10 years ago
- a3a100b Issue #22390: test.regrtest now emits a warning if temporary files or by Serhiy Storchaka · 10 years ago
- 1bd18ba Issue #22117: Cleanup pytime.c/.h by Victor Stinner · 10 years ago
- 09e5cf2 Issue #22117: Use the _PyTime_t API in _datetime.datetime() constructor by Victor Stinner · 10 years ago
- 10915aa Issue #22390: test.regrtest now emits a warning if temporary files or by Serhiy Storchaka · 10 years ago
- 07360df Issue #14260: The groupindex attribute of regular expression pattern object by Serhiy Storchaka · 10 years ago
- 1813c17 #2211: properly document the Morsel behavior changes. by R David Murray · 10 years ago
- 0deefd5 merge 3.4 (#23801) by Benjamin Peterson · 10 years ago
- d90f8d1 Closes #23801 - Ignore entire preamble to multipart in cgi.FieldStorage by Donald Stufft · 10 years ago
- f375b0a Merge: #23792: Ignore KeyboardInterrupt when the pydoc pager is active. by R David Murray · 10 years ago
- 1058cda #23792: Ignore KeyboardInterrupt when the pydoc pager is active. by R David Murray · 10 years ago
- 1b74d63 Added explicit tests for issue #23803. by Serhiy Storchaka · 10 years ago
- 48070c1 Issue #23803: Fixed str.partition() and str.rpartition() when a separator by Serhiy Storchaka · 10 years ago
- bfbfc8d Removed unintentional trailing spaces in text files. by Serhiy Storchaka · 10 years ago
- 1770fde Make some tests more frienly to MemoryError. by Serhiy Storchaka · 10 years ago
- 9db5500 Make some tests more frienly to MemoryError. by Serhiy Storchaka · 10 years ago
- cb0c602 Issue #22117: Fix _PyTime_GetMonotonicClock() and by Victor Stinner · 10 years ago
- 02937aa Issue #22117: Add the new _PyTime_ROUND_FLOOR rounding method for the datetime by Victor Stinner · 10 years ago
- b3b4544 Issue #22117: Use the _PyTime_t API for time.clock_settime() by Victor Stinner · 10 years ago
- c337838 Issue #22117: Use the new _PyTime_t API in the select module by Victor Stinner · 10 years ago
- f5faad2 Issue #22117: The thread module uses the new _PyTime_t timestamp API by Victor Stinner · 10 years ago
- e245231 Issue #22117: Fix ssl to use _PyTime_t API on sock_timeout by Victor Stinner · 10 years ago
- b28e916 Issue #22117: remove _PyTime_INTERVAL() macro by Victor Stinner · 10 years ago
- 71694d5 Issue #22117: The socket module uses _PyTime_t timestamp for timeouts by Victor Stinner · 10 years ago
- 95e9cef Issue #22117: Write unit tests for _PyTime_AsTimeval() by Victor Stinner · 10 years ago
- b7df314 Issue #23618, #22117: refactor socketmodule.c by Victor Stinner · 10 years ago
- 34dc0f4 Issue #22117: The signal modules uses the new _PyTime_t API by Victor Stinner · 10 years ago
- 7181dec Issue #22117: The gc module now uses _PyTime_t timestamp by Victor Stinner · 10 years ago
- a47b881 Issue #22117: time.time() now uses the new _PyTime_t API by Victor Stinner · 10 years ago
- 4bfb460 Issue #22117: time.monotonic() now uses the new _PyTime_t API by Victor Stinner · 10 years ago
- 52d1493 format .. note properly by Benjamin Peterson · 10 years ago
- ac9591a Remove a dead test for a never-launched API by Brett Cannon · 10 years ago
- ff7f428 Merge by Brett Cannon · 10 years ago
- 781692f Fix module deprecation warnings to have a useful stacklevel by Brett Cannon · 10 years ago
- 992c43f Issue #22117: Fix rounding in _PyTime_FromSecondsObject() by Victor Stinner · 10 years ago
- 79644f9 Issue #22117: Fix test_gdb for the new time.sleep() by Victor Stinner · 10 years ago
- ba508d5 Merge 3.4 (test.support) by Victor Stinner · 10 years ago
- d7aa524 Issue #23445: Fix test.support.python_is_optimized() for CFLAGS=-Og by Victor Stinner · 10 years ago
- 6b3af08 Merge 3.4 (asyncio) by Victor Stinner · 10 years ago
- 79fd962 asyncio: Fix _SelectorTransport.__repr__() if the event loop is closed by Victor Stinner · 10 years ago
- 59f6342 Issue #23715: Fix test_sigtimedwait() of test_eintr by Victor Stinner · 10 years ago
- eb35229 Issue #23451, #22117: Python 3.5 now requires Windows Vista or newer, so by Victor Stinner · 10 years ago
- cb29f01 Issue #22117: Add a new Python timestamp format _PyTime_t to pytime.h by Victor Stinner · 10 years ago