summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Omnibus news entry for updates to typing.py. (Merge 3.5->3.6)Guido van Rossum2016-06-081-0/+8
|\
| * Omnibus news entry for updates to typing.py.Guido van Rossum2016-06-081-0/+8
| |
* | Sync typing.py with upstream (merge 3.5->3.6).Guido van Rossum2016-06-082-4/+76
|\ \ | |/
| * Sync typing.py with upstream.Guido van Rossum2016-06-082-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 Selivanov2016-06-081-2/+0
|\ \ | |/
| * asyncio: Remove line about asyncio.timeout() from the NEWS fileYury Selivanov2016-06-081-2/+0
| |
* | Merge 3.5 (asyncio)Yury Selivanov2016-06-084-260/+0
|\ \ | |/
| * asyncio: Remove asyncio.timeout() context manager.Yury Selivanov2016-06-084-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 Selivanov2016-06-081-2/+7
|\ \ | |/
| * asyncio: Update whatsnew/3.5.2Yury Selivanov2016-06-081-2/+7
| |
* | Merge 3.5 (asyncio, issue #27136)Yury Selivanov2016-06-081-23/+24
|\ \ | |/
| * Issue #27136: Update asyncio docsYury Selivanov2016-06-081-23/+24
| |
* | Merge 3.5 (issue #27136, asyncio)Yury Selivanov2016-06-086-163/+116
|\ \ | |/
| * Issue #27136: Fix DNS static resolution; don't use it in getaddrinfoYury Selivanov2016-06-086-163/+116
| | | | | | | | Patch by A. Jesse Jiryu Davis
* | Fix RST conflicts with Idle news entriesMartin Panter2016-06-082-6/+7
| |
* | Merge from 3.5; no changes to 3.6Martin Panter2016-06-080-0/+0
|\ \ | |/
| * Issue #23275: Backport target list assignment documentation fixesMartin Panter2016-06-081-15/+14
| |
* | Issue #21593: Merge from 3.5Berker Peksag2016-06-081-2/+2
|\ \ | |/
| * Issue #21593: Clarify that re.search() returns the first matchBerker Peksag2016-06-081-2/+2
| |
* | Issue #25738: Merge HTTP server from 3.5Martin Panter2016-06-085-14/+73
|\ \ | |/
| * Issue #25738: Don’t send message body for 205 Reset ContentMartin Panter2016-06-085-11/+73
| | | | | | | | Patch by Susumu Koshiba.
* | Issue #21313: Merge version parsing from 3.5Martin Panter2016-06-083-4/+30
|\ \ | |/
| * Issue #21313: Tolerate truncated buildinfo in sys.versionMartin Panter2016-06-083-4/+30
| |
* | odict: Remove useless ";" after function definitionVictor Stinner2016-06-081-9/+9
| | | | | | | | Fix a "gcc -pendatic" warning.
* | py_getrandom(): use char* instead of void* for the destinationVictor Stinner2016-06-081-5/+8
| | | | | | | | Fix a "gcc -pedantic" warning on "buffer += n" because buffer type is void*.
* | Fixed #27251: merged fix from 3.5.Vinay Sajip2016-06-072-3/+4
|\ \ | |/
| * Fixed #27251: corrected string/bytes handling in credentials.Vinay Sajip2016-06-072-3/+4
| |
* | Items for NEWS and idlelib/NEWS.txt.Terry Jan Reedy2016-06-072-0/+46
|\ \ | |/
| * Items for NEWS and idlelib/NEWS.txt.Terry Jan Reedy2016-06-072-0/+22
| |
* | Merge 3.5 (os.urandom)Victor Stinner2016-06-077-12/+48
|\ \ | |/
| * os.urandom() doesn't block on Linux anymoreVictor Stinner2016-06-077-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.5Martin Panter2016-06-071-1/+1
|\ \ | |/
| * Issue #27229: Comment in middle of shell command fails on BSD and OS XMartin Panter2016-06-071-1/+1
| |
* | Issue #27229: Merge cross-compiling fix from 3.5Martin Panter2016-06-072-2/+8
|\ \ | |/
| * Issue #27229: Fix in-tree cross-build rule, by Xavier de GayeMartin Panter2016-06-072-2/+8
| |
* | Issue #26983: Fixed test_format failure.Serhiy Storchaka2016-06-061-1/+1
| | | | | | | | Patch by SilentGhost.
* | Issue #27107: mailbox.fcntl = None on WindowsMartin Panter2016-06-061-1/+1
| |
* | Issue #23883: News updates for __all__ attributesMartin Panter2016-06-062-3/+9
| |
* | Issue #27110: Add smtpd.SMTPChannel to __all__, by Jacek KołodziejMartin Panter2016-06-062-1/+15
| |
* | Issue #27109: Add InvalidFileException to __all__, by Jacek KołodziejMartin Panter2016-06-062-2/+8
| |
* | Issue #27108: Add missing names to mimetypes.__all__, by Jacek KołodziejMartin Panter2016-06-062-2/+10
| |
* | Issue #27107: Add exception classes to mailbox.__all__, by Jacek KołodziejMartin Panter2016-06-062-4/+11
| |
* | Issue #27105: Add cgi.test() to __all__, based on Jacek Kołodziej’s patchMartin Panter2016-06-062-1/+7
| |
* | Issue #27156: Remove more unused idlelib code.Terry Jan Reedy2016-06-062-13/+0
| |
* | Issue #26014: merge from 3.5Ned Deily2016-06-065-3/+16
|\ \ | |/
| * Issue #26014: Update 3.x packaging documentation:Ned Deily2016-06-065-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.5Martin Panter2016-06-053-18/+56
|\ \ | |/
| * Issue #27164: Allow decompressing raw Deflate streams with predefined zdictMartin Panter2016-06-053-18/+56
| | | | | | | | Based on patch by Xiang Zhang.
* | Issue #27225: Fixed a reference leak in type_new when setting __new__ fails.Serhiy Storchaka2016-06-051-1/+3
|\ \ | |/ | | | | Patch by Xiang Zhang.
| * Issue #27225: Fixed a reference leak in type_new when setting __new__ fails.Serhiy Storchaka2016-06-051-1/+3
| | | | | | | | Patch by Xiang Zhang.