summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* mergeRaymond Hettinger2013-05-032-0/+5
|\
| * Issue #15535: Fix pickling of named tuples.Raymond Hettinger2013-05-032-0/+5
| |
* | Issue #13721: SSLSocket.getpeercert() and SSLSocket.do_handshake() now raise ↵Antoine Pitrou2013-05-012-12/+37
| | | | | | | | an OSError with ENOTCONN, instead of an AttributeError, when the SSLSocket is not connected.
* | #17802: merge with 3.3.Ezio Melotti2013-05-012-0/+15
|\ \ | |/
| * #17802: Fix an UnboundLocalError in html.parser. Initial tests by Thomas ↵Ezio Melotti2013-05-012-0/+15
| | | | | | | | Barlow.
* | #14679: add an __all__ (that contains only HTMLParser) to html.parser.Ezio Melotti2013-05-011-0/+2
| |
* | #11078: test___all__ now checks for duplicates in __all__. Initial patch by ↵Ezio Melotti2013-05-011-11/+14
| | | | | | | | R. David Murray.
* | Issue #17712: Fix test_gdb failures on Ubuntu 13.04.Antoine Pitrou2013-04-301-21/+24
|\ \ | |/
| * Issue #17712: Fix test_gdb failures on Ubuntu 13.04.Antoine Pitrou2013-04-301-21/+24
| |
* | check local class namespace before reaching for cells (closes #17853)Benjamin Peterson2013-04-303-1/+19
| |
* | refactor traceback.py to reduce code duplication (closes #17646)Benjamin Peterson2013-04-292-143/+132
| | | | | | | | Patch by Martin Morrison.
* | merge 3.3Benjamin Peterson2013-04-291-0/+7
|\ \ | |/
| * raise an ImportError (rather than fatal) when __import__ is not found in ↵Benjamin Peterson2013-04-291-0/+7
| | | | | | | | __builtins__ (closes #17867)
* | merge for issue #17358Brett Cannon2013-04-281-2/+12
|\ \ | |/
| * Issue #17358: imp.load_source() and load_compiled() should now returnBrett Cannon2013-04-281-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | modules which will typically work when reloaded. A hack is used to support these functions as their API allowed them to pass in a file object but then operate as if import had loaded them. Unfortunately the hack kept a reference around for the file object passed in which would be unusable on reload since it had been closed. The solution is to simply use the hack for the initial load but then a proper loader on the module so that imp.reload() at least has a chance to work.
* | Added base64 module tests for non-binary files.Serhiy Storchaka2013-04-281-2/+10
|\ \ | |/
| * Added base64 module tests for non-binary files.Serhiy Storchaka2013-04-281-2/+10
| |
* | Issue #17842. Added base64 module tests with bytearray arguments.Serhiy Storchaka2013-04-281-1/+26
|\ \ | |/ | | | | Original patch by Kushal Das.
| * Issue #17842. Added base64 module tests with bytearray arguments.Serhiy Storchaka2013-04-281-1/+26
| | | | | | | | Original patch by Kushal Das.
* | Issue #17804: New function ``struct.iter_unpack`` allows for streaming ↵Antoine Pitrou2013-04-262-1/+74
| | | | | | | | struct unpacking.
* | merge headsGiampaolo Rodola'2013-04-264-45/+86
|\ \
| * | 17830: preserve line endings of original file when updating keywords.R David Murray2013-04-252-38/+42
| | | | | | | | | | | | | | | This fixes the test failures on Windows from the new tests, and includes test fixes as well as the module fix.
| * | Issue #17272: Making the urllib.request's Request.full_url a descriptor. FixesSenthil Kumaran2013-04-252-7/+44
| | | | | | | | | | | | bugs with assignment to full_url. Patch by Demian Brecht.
* | | ftplib: update connect() docstring by mentioning 'timeout' argumentGiampaolo Rodola'2013-04-261-0/+1
|/ /
* | Issue #17835: Fix test_io when the default OS pipe buffer size is larger ↵Antoine Pitrou2013-04-242-6/+8
|\ \ | |/ | | | | than one million bytes.
| * Issue #17835: Fix test_io when the default OS pipe buffer size is larger ↵Antoine Pitrou2013-04-242-6/+8
| | | | | | | | than one million bytes.
* | Issue #17244: Windows doesn't let you set permissions on directories.Brett Cannon2013-04-241-0/+2
| |
* | clean the environment from pre-existing PYTHONWARNINGS for test_warningsŁukasz Langa2013-04-231-0/+12
|\ \ | |/
| * clean the environment from pre-existing PYTHONWARNINGS for test_warningsŁukasz Langa2013-04-231-0/+12
| |
| * backported rev 79713 from 3.4, test_recursion_limit skipped for -O0Łukasz Langa2013-04-231-1/+2
| |
* | fix character index in ExtendedInterpolation's exception messageŁukasz Langa2013-04-231-1/+1
|\ \ | |/
| * fix character index in ExtendedInterpolation's exception messageŁukasz Langa2013-04-231-1/+1
| |
* | (3.3->default) Ensure that plistlib doesn't corrupt deeply nested datastructuresRonald Oussoren2013-04-232-2/+14
|\ \ | |/ | | | | | | | | | | Without this changeset plistlib would write empty tags for plistlib.Data objects in deeply nested datastructures. Fixes #17353
| * Ensure that plistlib doesn't corrupt deeply nested datastructuresRonald Oussoren2013-04-232-2/+14
| | | | | | | | | | | | | | Without this changeset plistlib would write empty tags for plistlib.Data objects in deeply nested datastructures. Fixes #17353
* | Issue #11714: Use 'with' statements to assure a Semaphore releases aSerhiy Storchaka2013-04-221-20/+18
|\ \ | |/ | | | | condition variable. Original patch by Thomas Rachel.
| * Issue #11714: Use 'with' statements to assure a Semaphore releases aSerhiy Storchaka2013-04-221-20/+18
| | | | | | | | condition variable. Original patch by Thomas Rachel.
* | Issue #16624: `subprocess.check_output` now accepts an `input` argument,Serhiy Storchaka2013-04-222-2/+56
| | | | | | | | | | allowing the subprocess's stdin to be provided as a (byte) string. Patch by Zack Weinberg.
* | Closes #17795: Reverted backwards-incompatible change in SysLogHandler with ↵Vinay Sajip2013-04-221-4/+27
|\ \ | |/ | | | | Unix domain sockets.
| * Issue #17795: Reverted backwards-incompatible change in SysLogHandler with ↵Vinay Sajip2013-04-221-5/+24
| | | | | | | | Unix domain sockets.
* | Merge #17065: Use process-unique key for winreg test.R David Murray2013-04-211-2/+5
|\ \ | |/ | | | | Patch by Jeremy Kloth.
| * #17065: Use process-unique key for winreg test.R David Murray2013-04-211-2/+5
| | | | | | | | Patch by Jeremy Kloth.
* | Merge removal of duplicated tests from 3.3.Ezio Melotti2013-04-211-21/+0
|\ \ | |/
| * Remove duplicated tests.Ezio Melotti2013-04-211-21/+0
| |
* | Merge 3.3Alexandre Vassalotti2013-04-202-6/+62
|\ \ | |/
| * Isuse #17720: Fix APPENDS handling in the Python implementation of UnpicklerAlexandre Vassalotti2013-04-202-6/+62
| | | | | | | | to correctly process the opcode when it is used on non-list objects.
* | Issue #16694: Add a pure Python implementation of the operator module.Antoine Pitrou2013-04-203-33/+472
| | | | | | | | Patch by Zachary Ware.
* | Remove superfluous try/exceptEli Bendersky2013-04-201-12/+6
| |
* | Make license notices more consistent and remove old changelog.Eli Bendersky2013-04-201-4/+3
| | | | | | | | Also remove unused macro.
* | #9607: restore keywords.kwlist after testing it.R David Murray2013-04-201-0/+2
| |
* | #9607: Add tests for the keyword module.R David Murray2013-04-202-1/+135
| | | | | | | | Based on the testing ideas in a patch written by Greg Malcolm.