| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #23618: Document EINTR changes in socket documentation | Victor Stinner | 2015-04-02 | 4 | -5/+56 |
|
|
* | What's New in Python 3.5: mention signal.set_wakeup_fd() enhancement on Windows | Victor Stinner | 2015-04-01 | 1 | -0/+3 |
|
|
* | It wasn't a typo, it is the mnemonic (AT=@). | R David Murray | 2015-04-01 | 1 | -1/+1 |
|
|
* | merge 3.4 (#12855) | Benjamin Peterson | 2015-04-01 | 1 | -4/+36 |
|\ |
|
| * | document what exactly str.splitlines() splits on (closes #12855) | Benjamin Peterson | 2015-04-01 | 1 | -4/+36 |
|
|
* | | Issue 23793: Add deque support for __add__(), __mul__(), and __imul__(). | Raymond Hettinger | 2015-03-31 | 1 | -0/+3 |
|
|
* | | Issue #10395: Added os.path.commonpath(). Implemented in posixpath and ntpath. | Serhiy Storchaka | 2015-03-31 | 2 | -3/+23 |
|
|
* | | What's New in Python 3.5, PEP 475: mention modified signal functions | Victor Stinner | 2015-03-31 | 2 | -2/+3 |
|
|
* | | Issue #23611: Serializing more "lookupable" objects (such as unbound methods | Serhiy Storchaka | 2015-03-31 | 1 | -0/+7 |
|
|
* | | Issue #13583: sqlite3.Row now supports slice indexing. | Serhiy Storchaka | 2015-03-31 | 1 | -0/+3 |
|
|
* | | Issue #23485: Enhance and update selectors doc and test_selectors | Victor Stinner | 2015-03-31 | 1 | -0/+6 |
|
|
* | | Issue #23485: select.devpoll.poll() is now retried when interrupted by a signal | Victor Stinner | 2015-03-31 | 2 | -2/+8 |
|
|
* | | Issue #23485: select.kqueue.control() is now retried when interrupted by a si... | Victor Stinner | 2015-03-31 | 2 | -1/+8 |
|
|
* | | Fix typo in Doc/whatsnew/3.5.rst. | Berker Peksag | 2015-03-31 | 1 | -1/+1 |
|
|
* | | merge | Raymond Hettinger | 2015-03-31 | 1 | -8/+10 |
|\ \
| |/ |
|
| * | Issue #23729: Improve docs for ElementTree namespace parsing | Raymond Hettinger | 2015-03-31 | 1 | -8/+10 |
|
|
* | | Issue #23485: select.epoll.poll() is now retried when interrupted by a signal | Victor Stinner | 2015-03-30 | 2 | -1/+7 |
|
|
* | | Issue #23485: select.poll.poll() is now retried when interrupted by a signal | Victor Stinner | 2015-03-30 | 2 | -1/+7 |
|
|
* | | Ignore .rst files in the venv directory. | Brett Cannon | 2015-03-30 | 1 | -0/+3 |
|
|
* | | Issue #23485: select.select() is now retried automatically with the recomputed | Victor Stinner | 2015-03-30 | 4 | -8/+25 |
|
|
* | | #2211: Fix typo, address missed review comment. | R David Murray | 2015-03-30 | 2 | -2/+8 |
|
|
* | | What's New in Python 3.5: add pep 461 (bytes%args) and 465 (a@b) | Victor Stinner | 2015-03-30 | 1 | -3/+42 |
|
|
* | | Merge 3.5.0a3 release engineering changes back into trunk. | Larry Hastings | 2015-03-30 | 1 | -1/+3 |
|\ \ |
|
| * | | Issue #23171: csv.Writer.writerow() now supports arbitrary iterables. | Serhiy Storchaka | 2015-03-30 | 1 | -1/+3 |
|
|
* | | | Regenerated pydoc topics and minor doc fixes for 3.5.0a3. | Larry Hastings | 2015-03-29 | 2 | -7/+17 |
|/ / |
|
* | | #2211: properly document the Morsel behavior changes. | R David Murray | 2015-03-29 | 2 | -11/+45 |
|
|
* | | format .. note properly | Benjamin Peterson | 2015-03-27 | 1 | -3/+5 |
|
|
* | | Issue #23648: Document the PEP 475 in the "Porting to Python 3.5" section and | Victor Stinner | 2015-03-26 | 3 | -0/+33 |
|
|
* | | Issue #21717: The zipfile.ZipFile.open function now supports 'x' (exclusive | Serhiy Storchaka | 2015-03-25 | 2 | -9/+19 |
|
|
* | | Issue #23622: Unknown escapes in regular expressions that consist of ``'\'`` | Serhiy Storchaka | 2015-03-24 | 2 | -2/+10 |
|
|
* | | Issue #23671: string.Template now allows to specify the "self" parameter as | Serhiy Storchaka | 2015-03-24 | 2 | -0/+8 |
|\ \
| |/ |
|
* | | change Σ to ν for obscure joke reasons | Benjamin Peterson | 2015-03-24 | 1 | -2/+2 |
|
|
* | | #11468: merge with 3.4. | Ezio Melotti | 2015-03-24 | 1 | -37/+28 |
|\ \
| |/ |
|
| * | #11468: improve unittest basic example. Initial patch by Florian Preinstorfer. | Ezio Melotti | 2015-03-24 | 1 | -37/+28 |
|
|
* | | Issue #23688: Added support of arbitrary bytes-like objects and avoided | Serhiy Storchaka | 2015-03-23 | 1 | -0/+4 |
|
|
* | | Issue #23252: Added support for writing ZIP files to unseekable streams. | Serhiy Storchaka | 2015-03-22 | 2 | -1/+10 |
|
|
* | | merge | Raymond Hettinger | 2015-03-22 | 1 | -0/+68 |
|\ \
| |/ |
|
| * | Issue 23729: Document ElementTree namespace handling and fix an omission in ... | Raymond Hettinger | 2015-03-22 | 1 | -0/+68 |
|
|
* | | Merge: #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None. | R David Murray | 2015-03-22 | 1 | -13/+23 |
|\ \
| |/ |
|
| * | #23539: Set Content-Length to 0 for PUT, POST, and PATCH if body is None. | R David Murray | 2015-03-22 | 1 | -13/+23 |
|
|
* | | #23657 Don't explicitly do an isinstance check for str in zipapp | Paul Moore | 2015-03-22 | 1 | -8/+9 |
|
|
* | | merge 3.4 (#22933) | Benjamin Peterson | 2015-03-22 | 1 | -6/+3 |
|\ \
| |/ |
|
| * | clarify behavior of shutil.move when destination exists (closes #22933) | Benjamin Peterson | 2015-03-22 | 1 | -6/+3 |
|
|
* | | Issue 23704: Add index(), copy(), and insert() to deques. Register deques a... | Raymond Hettinger | 2015-03-21 | 1 | -0/+22 |
|
|
* | | Issue #22832: Tweaked parameter names for fcntl module to better match | Serhiy Storchaka | 2015-03-20 | 1 | -32/+32 |
|
|
* | | Merge: #11726: Make linecache docs reflect that all files are treated the same. | R David Murray | 2015-03-20 | 1 | -2/+2 |
|\ \
| |/ |
|
| * | #11726: Make linecache docs reflect that all files are treated the same. | R David Murray | 2015-03-20 | 1 | -2/+2 |
|
|
* | | Issue #23681: The -b option now affects comparisons of bytes with int. | Serhiy Storchaka | 2015-03-20 | 2 | -1/+6 |
|
|
* | | Issue #23715: signal.sigwaitinfo() and signal.sigtimedwait() are now retried | Victor Stinner | 2015-03-20 | 1 | -0/+10 |
|
|
* | | Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, and | Serhiy Storchaka | 2015-03-20 | 4 | -24/+59 |
|
|