summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* asyncio: Fix from Anthony Baire for CPython issue 19566 (replaces earlier fix).Guido van Rossum2013-11-133-42/+60
|
* removed Enum.__eq__ as it added nothingEthan Furman2013-11-132-5/+11
|
* asyncio: Temporary fix by Victor Stinner for issue 19566.Guido van Rossum2013-11-131-2/+3
|
* Close #17828: better handling of codec errorsNick Coghlan2013-11-131-24/+169
| | | | | | | | - output type errors now redirect users to the type-neutral convenience functions in the codecs module - stateless errors that occur during encoding and decoding will now be automatically wrapped in exceptions that give the name of the codec involved
* Avoid global side effect in test_ensurepipNick Coghlan2013-11-131-3/+8
|
* Fix test_socket for repr updateNick Coghlan2013-11-131-2/+2
|
* mergeGiampaolo Rodola'2013-11-121-1/+1
|\
| * Provide a more readable representation of socket on repr().Giampaolo Rodola'2013-10-031-1/+1
| | | | | | | | | | | | | | | | Before: <socket.socket fd=3, family=2, type=1, proto=0, laddr=('0.0.0.0', 0)> Now: <socket.socket fd=3, family=AddressFamily.AF_INET, type=SocketType.SOCK_STREAM, proto=0, laddr=('0.0.0.0', 0)>
* | test.support: considering the module is a mix of utilities unrelated with ↵Giampaolo Rodola'2013-11-121-18/+36
| | | | | | | | each other divide __all__ in sub-sections so that it can be used as a quick-reference doc
* | Close #19466: Clear the frames of daemon threads earlier during the PythonVictor Stinner2013-11-121-0/+50
| | | | | | | | | | shutdown to call objects destructors. So "unclosed file" resource warnings are now corretly emitted for daemon threads.
* | Merge from 3.3Andrew Kuchling2013-11-121-1/+5
|\ \
| * | Closes #12828: add docstring text noting this is an internal-only moduleAndrew Kuchling2013-11-121-1/+5
| | |
* | | Remove mis-merged artefactTim Golden2013-11-121-3/+0
| | |
* | | Issue13674 Correct crash with strftime %y format under WindowsTim Golden2013-11-121-0/+26
|\ \ \ | |/ /
| * | Issue13674 Correct crash with strftime %y format under WindowsTim Golden2013-11-121-1/+25
| | |
* | | Issue #19440: Clean up test_capiZachary Ware2013-11-121-14/+8
|\ \ \ | |/ /
| * | Issue #19440: Clean up test_capiZachary Ware2013-11-121-13/+7
| | |
* | | Closes #6683: add a test that exercises multiple authentication.Andrew Kuchling2013-11-111-0/+9
| | | | | | | | | | | | | | | The SMTP server advertises four different authentication methods, and the code will try CRAM-MD5 first, which will fail, but LOGIN succeeds.
* | | Remove outdated commentTim Golden2013-11-111-1/+0
|\ \ \ | |/ /
| * | Remove outdated commentTim Golden2013-11-111-1/+0
| | |
* | | Close #19406: Initial implementation of ensurepipNick Coghlan2013-11-115-0/+281
| | | | | | | | | | | | Patch by Donald Stufft and Nick Coghlan
* | | Issue #8799: Reduce timing sensitivity of condition test by explicitlyKristjan Valur Jonsson2013-11-111-0/+15
| | | | | | | | | | | | delaying the main thread so that it doesn't race ahead of the workers.
* | | Fix failing test incorrectly merged in b1244046f37aJason R. Coombs2013-11-111-1/+1
| | |
* | | Merge with 3.3 for Issue #19544 and Issue #6286. Merge is untested. I was ↵Jason R. Coombs2013-11-102-71/+58
|\ \ \ | |/ / | | | | | | unable to test due to bab0cbf86835.
| * | Issue #19544 and Issue #6286: Restore use of urllib over http allowing use ↵Jason R. Coombs2013-11-102-68/+55
| | | | | | | | | | | | of http_proxy for Distutils upload command, a feature accidentally lost in the rollback of distutils2.
* | | Merge with 3.3 for Issue #19544 and Issue #7457Jason R. Coombs2013-11-102-18/+101
|\ \ \ | |/ /
| * | Issue 19544 and Issue #7457: Restore the read_pkg_file method to ↵Jason R. Coombs2013-11-102-18/+101
| | | | | | | | | | | | distutils.dist.DistributionMetadata accidentally removed in the undo of distutils2.
* | | Issue #16685: Added support for any bytes-like objects in the audioop module.Serhiy Storchaka2013-11-101-4/+98
| | | | | | | | | | | | Removed support for strings.
* | | Merge headsSerhiy Storchaka2013-11-101-0/+16
|\ \ \
| * \ \ MergeJason R. Coombs2013-11-102-2/+309
| |\ \ \
| * | | | Normalize whitespaceJason R. Coombs2013-11-101-2/+2
| | | | |
| * | | | Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` ↵Atsuo Ishimoto2012-07-161-0/+16
| | | | | | | | | | | | | | | | | | | | to socket module.
* | | | | Issue #19261: Added support for writing 24-bit samples in the sunau module.Serhiy Storchaka2013-11-103-1/+32
| |/ / / |/| | |
* | | | #1097797: Add CP273 codec, and exercise it in the test suiteAndrew Kuchling2013-11-102-2/+309
|/ / /
* | | Issue #1575020: Fixed support of 24-bit wave files on big-endian platforms.Serhiy Storchaka2013-11-092-5/+12
|\ \ \ | |/ /
| * | Issue #1575020: Fixed support of 24-bit wave files on big-endian platforms.Serhiy Storchaka2013-11-092-11/+13
| | |
* | | Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.11 (issue #19085).Serhiy Storchaka2013-11-093-23/+31
|\ \ \ | |/ /
| * | Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.11 (issue #19085).Serhiy Storchaka2013-11-093-23/+31
| | |
* | | remove dead importBrett Cannon2013-11-081-1/+0
| | |
* | | Issue #16803: test.test_importlib.source now tests frozen and source codeBrett Cannon2013-11-085-74/+91
| | |
* | | Issue #18923: Update subprocess to use the new selectors module.Charles-François Natali2013-11-082-173/+75
| | |
* | | Simplify test.test_importlib.__main__Brett Cannon2013-11-081-10/+1
| | |
* | | Issue #16803: test.test_importlib.import_ now tests frozen and source codeBrett Cannon2013-11-0811-154/+146
| | |
* | | Issue #16803: test.test_importlib.frozen now runs both frozen and source codeBrett Cannon2013-11-082-31/+33
| | |
* | | Remove redundant test_selectors.py from test_asyncio.Guido van Rossum2013-11-072-150/+0
| | |
* | | #17080: improve error message of float/complex when the wrong type is passed.Ezio Melotti2013-11-072-0/+2
| | |
* | | Optimize BaseSelector.modify(). Patch by Arnaud Faure.Guido van Rossum2013-11-072-3/+16
| | |
* | | #19480: merge with 3.3.Ezio Melotti2013-11-072-13/+25
|\ \ \ | |/ /
| * | #19480: HTMLParser now accepts all valid start-tag names as defined by the ↵Ezio Melotti2013-11-072-13/+25
| | | | | | | | | | | | HTML5 standard.
* | | asyncio: Add close() back to Unix selector event loop, to remove all signal ↵Guido van Rossum2013-11-072-0/+21
| | | | | | | | | | | | handlers. Should fix buildbot issues.