Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Omnibus news entry for updates to typing.py. (Merge 3.5->3.6) | Guido van Rossum | 2016-06-08 | 1 | -0/+8 |
|\ | |||||
| * | Omnibus news entry for updates to typing.py. | Guido van Rossum | 2016-06-08 | 1 | -0/+8 |
| | | |||||
* | | Sync typing.py with upstream (merge 3.5->3.6). | Guido van Rossum | 2016-06-08 | 2 | -4/+76 |
|\ \ | |/ | |||||
| * | Sync typing.py with upstream. | Guido van Rossum | 2016-06-08 | 2 | -4/+76 |
| | | | | | | | | | | | | | | | | | | (Upstream is https://github.com/python/typing) - Add TYPE_CHECKING (false at runtime, true in type checkers) (upstream #230). - Avoid error on Union[xml.etree.cElementTree.Element, str] (upstream #229). - Repr of Tuple[()] should be 'Tuple[()]' (upstream #231). - Add NewType() (upstream #189). | ||||
* | | Merge 3.5 (NEWS) | Yury Selivanov | 2016-06-08 | 1 | -2/+0 |
|\ \ | |/ | |||||
| * | asyncio: Remove line about asyncio.timeout() from the NEWS file | Yury Selivanov | 2016-06-08 | 1 | -2/+0 |
| | | |||||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-06-08 | 4 | -260/+0 |
|\ \ | |/ | |||||
| * | asyncio: Remove asyncio.timeout() context manager. | Yury Selivanov | 2016-06-08 | 4 | -260/+0 |
| | | | | | | | | | | | | | | It will probably be added back in Python 3.6, once its compatibility issues are resolved; see [1] for more details. [1] https://mail.python.org/pipermail/async-sig/2016-June/000045.html | ||||
* | | Merge 3.5 (whatsnew) | Yury Selivanov | 2016-06-08 | 1 | -2/+7 |
|\ \ | |/ | |||||
| * | asyncio: Update whatsnew/3.5.2 | Yury Selivanov | 2016-06-08 | 1 | -2/+7 |
| | | |||||
* | | Merge 3.5 (asyncio, issue #27136) | Yury Selivanov | 2016-06-08 | 1 | -23/+24 |
|\ \ | |/ | |||||
| * | Issue #27136: Update asyncio docs | Yury Selivanov | 2016-06-08 | 1 | -23/+24 |
| | | |||||
* | | Merge 3.5 (issue #27136, asyncio) | Yury Selivanov | 2016-06-08 | 6 | -163/+116 |
|\ \ | |/ | |||||
| * | Issue #27136: Fix DNS static resolution; don't use it in getaddrinfo | Yury Selivanov | 2016-06-08 | 6 | -163/+116 |
| | | | | | | | | Patch by A. Jesse Jiryu Davis | ||||
* | | Fix RST conflicts with Idle news entries | Martin Panter | 2016-06-08 | 2 | -6/+7 |
| | | |||||
* | | Merge from 3.5; no changes to 3.6 | Martin Panter | 2016-06-08 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Issue #23275: Backport target list assignment documentation fixes | Martin Panter | 2016-06-08 | 1 | -15/+14 |
| | | |||||
* | | Issue #21593: Merge from 3.5 | Berker Peksag | 2016-06-08 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #21593: Clarify that re.search() returns the first match | Berker Peksag | 2016-06-08 | 1 | -2/+2 |
| | | |||||
* | | Issue #25738: Merge HTTP server from 3.5 | Martin Panter | 2016-06-08 | 5 | -14/+73 |
|\ \ | |/ | |||||
| * | Issue #25738: Don’t send message body for 205 Reset Content | Martin Panter | 2016-06-08 | 5 | -11/+73 |
| | | | | | | | | Patch by Susumu Koshiba. | ||||
* | | Issue #21313: Merge version parsing from 3.5 | Martin Panter | 2016-06-08 | 3 | -4/+30 |
|\ \ | |/ | |||||
| * | Issue #21313: Tolerate truncated buildinfo in sys.version | Martin Panter | 2016-06-08 | 3 | -4/+30 |
| | | |||||
* | | odict: Remove useless ";" after function definition | Victor Stinner | 2016-06-08 | 1 | -9/+9 |
| | | | | | | | | Fix a "gcc -pendatic" warning. | ||||
* | | py_getrandom(): use char* instead of void* for the destination | Victor Stinner | 2016-06-08 | 1 | -5/+8 |
| | | | | | | | | Fix a "gcc -pedantic" warning on "buffer += n" because buffer type is void*. | ||||
* | | Fixed #27251: merged fix from 3.5. | Vinay Sajip | 2016-06-07 | 2 | -3/+4 |
|\ \ | |/ | |||||
| * | Fixed #27251: corrected string/bytes handling in credentials. | Vinay Sajip | 2016-06-07 | 2 | -3/+4 |
| | | |||||
* | | Items for NEWS and idlelib/NEWS.txt. | Terry Jan Reedy | 2016-06-07 | 2 | -0/+46 |
|\ \ | |/ | |||||
| * | Items for NEWS and idlelib/NEWS.txt. | Terry Jan Reedy | 2016-06-07 | 2 | -0/+22 |
| | | |||||
* | | Merge 3.5 (os.urandom) | Victor Stinner | 2016-06-07 | 7 | -12/+48 |
|\ \ | |/ | |||||
| * | os.urandom() doesn't block on Linux anymore | Victor Stinner | 2016-06-07 | 7 | -12/+48 |
| | | | | | | | | | | | | Issue #26839: On Linux, os.urandom() now calls getrandom() with GRND_NONBLOCK to fall back on reading /dev/urandom if the urandom entropy pool is not initialized yet. Patch written by Colm Buckley. | ||||
* | | Issue #27229: Merge makefile fix from 3.5 | Martin Panter | 2016-06-07 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #27229: Comment in middle of shell command fails on BSD and OS X | Martin Panter | 2016-06-07 | 1 | -1/+1 |
| | | |||||
* | | Issue #27229: Merge cross-compiling fix from 3.5 | Martin Panter | 2016-06-07 | 2 | -2/+8 |
|\ \ | |/ | |||||
| * | Issue #27229: Fix in-tree cross-build rule, by Xavier de Gaye | Martin Panter | 2016-06-07 | 2 | -2/+8 |
| | | |||||
* | | Issue #26983: Fixed test_format failure. | Serhiy Storchaka | 2016-06-06 | 1 | -1/+1 |
| | | | | | | | | Patch by SilentGhost. | ||||
* | | Issue #27107: mailbox.fcntl = None on Windows | Martin Panter | 2016-06-06 | 1 | -1/+1 |
| | | |||||
* | | Issue #23883: News updates for __all__ attributes | Martin Panter | 2016-06-06 | 2 | -3/+9 |
| | | |||||
* | | Issue #27110: Add smtpd.SMTPChannel to __all__, by Jacek Kołodziej | Martin Panter | 2016-06-06 | 2 | -1/+15 |
| | | |||||
* | | Issue #27109: Add InvalidFileException to __all__, by Jacek Kołodziej | Martin Panter | 2016-06-06 | 2 | -2/+8 |
| | | |||||
* | | Issue #27108: Add missing names to mimetypes.__all__, by Jacek Kołodziej | Martin Panter | 2016-06-06 | 2 | -2/+10 |
| | | |||||
* | | Issue #27107: Add exception classes to mailbox.__all__, by Jacek Kołodziej | Martin Panter | 2016-06-06 | 2 | -4/+11 |
| | | |||||
* | | Issue #27105: Add cgi.test() to __all__, based on Jacek Kołodziej’s patch | Martin Panter | 2016-06-06 | 2 | -1/+7 |
| | | |||||
* | | Issue #27156: Remove more unused idlelib code. | Terry Jan Reedy | 2016-06-06 | 2 | -13/+0 |
| | | |||||
* | | Issue #26014: merge from 3.5 | Ned Deily | 2016-06-06 | 5 | -3/+16 |
|\ \ | |/ | |||||
| * | Issue #26014: Update 3.x packaging documentation: | Ned Deily | 2016-06-06 | 5 | -3/+16 |
| | | | | | | | | | | | | | | - "See also" links to the new docs are now provided in the legacy pages - links to setuptools documentation have been updated (original patch by Susan Sun) | ||||
* | | Issue #27164: Merge raw Deflate zdict support from 3.5 | Martin Panter | 2016-06-05 | 3 | -18/+56 |
|\ \ | |/ | |||||
| * | Issue #27164: Allow decompressing raw Deflate streams with predefined zdict | Martin Panter | 2016-06-05 | 3 | -18/+56 |
| | | | | | | | | Based on patch by Xiang Zhang. | ||||
* | | Issue #27225: Fixed a reference leak in type_new when setting __new__ fails. | Serhiy Storchaka | 2016-06-05 | 1 | -1/+3 |
|\ \ | |/ | | | | | Patch by Xiang Zhang. | ||||
| * | Issue #27225: Fixed a reference leak in type_new when setting __new__ fails. | Serhiy Storchaka | 2016-06-05 | 1 | -1/+3 |
| | | | | | | | | Patch by Xiang Zhang. |