summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* | Remove incorrect comment from dis testsNick Coghlan2013-11-061-1/+0
| |
* | Close #19378: address flaws in the new dis module APIsNick Coghlan2013-11-063-105/+125
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - confusing line_offset parameter -> first_line parameter - systematically test and fix new file parameter - remove redundant Bytecode.show_info() API - rename Bytecode.display_code() to Bytecode.dis() and have it return the multi-line string rather than printing it directly - eliminated some not-so-helpful helpers from the bytecode_helper test support module Also fixed a longstanding defect (worked around in the test suite) where lines emitted by the dis module could include trailing white space. That no longer happens, allowing the formatting tests to be simplified to use plain string comparisons.
* | Revert wrong change in previous commit (issue #19085).Serhiy Storchaka2013-11-051-1/+1
|\ \ | |/
| * Revert wrong change in previous commit (issue #19085).Serhiy Storchaka2013-11-051-1/+1
| |
* | Fix test_insertwidth Tkinter tests on Tk 8.5 with patchlevel >= 8.5.12 ↵Serhiy Storchaka2013-11-051-4/+4
|\ \ | |/ | | | | (issue #19085).
| * Fix test_insertwidth Tkinter tests on Tk 8.5 with patchlevel >= 8.5.12 ↵Serhiy Storchaka2013-11-051-4/+4
| | | | | | | | (issue #19085).
* | Fix typo in tkinter tests (issue #19085).Serhiy Storchaka2013-11-051-1/+1
|\ \ | |/
| * Fix typo in tkinter tests (issue #19085).Serhiy Storchaka2013-11-051-1/+1
| |
* | Issue #10197 Tweak docs for subprocess.getstatusoutput and align the ↵Tim Golden2013-11-051-11/+15
| | | | | | | | documentation, the module docstring, and the function docstring.
* | Merge with 3.3Terry Jan Reedy2013-11-051-1/+1
|\ \ | |/
| * Issue #19397: test_pydoc now works with -S (help not added to builtins).Terry Jan Reedy2013-11-051-1/+1
| | | | | | | | Patch by Serhiy Storchaka and Vajrasky Kok.
* | asyncio: Refactor SIGCHLD handling. By Anthony Baire.Guido van Rossum2013-11-045-199/+1315
| |
* | asyncio: Locks improvements by Arnaud Faure: better repr(), change Conditio\Guido van Rossum2013-11-042-25/+124
| | | | | | | | n structure.
* | Issue #19085: Fix running test_ttk_textonly on displayless host.Serhiy Storchaka2013-11-042-9/+16
|\ \ | |/
| * Issue #19085: Fix running test_ttk_textonly on displayless host.Serhiy Storchaka2013-11-042-9/+16
| |
* | Issue #19085: Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.12.Serhiy Storchaka2013-11-041-1/+13
|\ \ | |/
| * Issue #19085: Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.12.Serhiy Storchaka2013-11-041-1/+13
| |
| * Issue #18702: All skipped tests now reported as skipped.Serhiy Storchaka2013-11-0320-928/+951
| |
* | Fix functools.partialmethod docs and __all__Nick Coghlan2013-11-041-1/+1
| |
* | Issue #18702: All skipped tests now reported as skipped.Serhiy Storchaka2013-11-0320-977/+1017
| |
* | Merge #19485: clarify get_param example.R David Murray2013-11-031-1/+1
|\ \ | |/
| * #19485: clarify get_param example.R David Murray2013-11-031-1/+1
| | | | | | | | Patch by Vajrasky Kok.
* | Issue #19085: Fixed pixels rounding for last Tk patchlevels.Serhiy Storchaka2013-11-031-1/+1
|\ \ | |/
| * Issue #19085: Fixed pixels rounding for last Tk patchlevels.Serhiy Storchaka2013-11-031-1/+1
| |
| * Issue #10197: merge headsTim Golden2013-11-032-24/+11
| |\
* | \ Issue #10197: merge headsTim Golden2013-11-032-24/+11
|\ \ \
| * \ \ Issue #10197 Rework subprocess.get[status]output to use subprocess ↵Tim Golden2013-11-032-24/+11
| |\ \ \ | | | |/ | | |/| | | | | functionality and thus to work on Windows. Patch by Nick Coghlan.
| | * | Issue #10197 Rework subprocess.get[status]output to use subprocess ↵Tim Golden2013-11-032-24/+11
| | | | | | | | | | | | | | | | functionality and thus to work on Windows. Patch by Nick Coghlan.