summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* issue 14826 - Address the buildbot failure quote of url is the required ↵Senthil Kumaran2012-07-081-1/+1
|\ | | | | | | change ( explanation msg164973)
| * issue 14826 - Address the buildbot failure ( explanation msg164973)Senthil Kumaran2012-07-081-1/+1
| |
* | #15284: Skip {send,recv}msg tests with disabled IPv6Ross Lagerwall2012-07-081-5/+5
| | | | | | | | Patch by Brian Brazil.
* | Issue 14814: Further error case testing coverage and cleanupsNick Coghlan2012-07-082-98/+93
| |
* | Fix issue14826 - make urllib.request.Request quoted url consistent with ↵Senthil Kumaran2012-07-082-1/+7
|\ \ | |/ | | | | | | | | URLOpener open method. Patch contributed by Stephen Thorne.
| * Fix issue14826 - make urllib.request.Request quoted url consistent with ↵Senthil Kumaran2012-07-082-1/+7
| | | | | | | | | | | | URLOpener open method. Patch contributed by Stephen Thorne.
* | Fix 5931 - Python runtime hardcoded in wsgiref.simple_server - Now it ↵Senthil Kumaran2012-07-072-3/+10
| | | | | | | | specifies an implementation specific term.
* | Merge remoteŁukasz Langa2012-07-072-6/+51
|\ \
| * | Fixes #14590: ConfigParser doesn't strip inline comment when delimiter occursŁukasz Langa2012-07-072-6/+51
| | | | | | | | | | | | earlier without preceding space.
* | | Merge with remote.Ross Lagerwall2012-07-071-3/+5
|\ \ \ | |/ / |/| |
| * | #15277: Fix a resource leak in support.py when IPv6 is disabled.Ross Lagerwall2012-07-071-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | The leak occurred by setting: echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6 before running test_support. Patch by Brian Brazil.
* | | trace: remove unused imports.Florent Xicluna2012-07-071-3/+0
| | |
* | | Add tests to marshall double with xmlrpc.client.Florent Xicluna2012-07-071-0/+16
| | |
* | | Issue #13248: io: Remove obsolete argument "max_buffer_size" of ↵Florent Xicluna2012-07-072-24/+8
| | | | | | | | | | | | BufferedWriter and BufferedRWPair.
* | | Issue #13248: argparse: Remove obsolete argument "version" of ArgumentParser.Florent Xicluna2012-07-072-79/+37
| | |
* | | Issue 14814: Ensure ordering semantics across all 3 entity types in ↵Nick Coghlan2012-07-072-128/+166
|/ / | | | | | | ipaddress are consistent and well-defined
* | Issue 14814: Correctly return NotImplemented from ipaddress._BaseNetwork.__eq__Nick Coghlan2012-07-072-7/+22
| |
* | Cope with OSs lying - #10142: Support for SEEK_HOLE/SEEK_DATAJesus Cea2012-07-071-8/+12
| |
* | Issue 14814: Explain how to get more error detail in the ipaddress tutorial, ↵Nick Coghlan2012-07-072-5/+6
| | | | | | | | and tweak the display for octet errors in IPv4 (noticed the formatting problem when adding to the docs)
* | Issue 14814: Make the ipaddress code easier to follow by using newer ↵Nick Coghlan2012-07-071-91/+67
| | | | | | | | language features (patch by Serhiy Storchaka)
* | Minor refactoring in importlib._bootstrap, and fix the '_wrap' docstring.Florent Xicluna2012-07-071-14/+15
| |
* | Minor refactoring in xml.etree.ElementTree doctype parser.Florent Xicluna2012-07-071-2/+2
| |
* | Merge branchFlorent Xicluna2012-07-072-1/+5
|\ \ | |/
| * Issue #14990: tokenize: correctly fail with SyntaxError on invalid encoding ↵Florent Xicluna2012-07-072-1/+5
| | | | | | | | declaration.
* | Issue 14814: Provide more informative error messages in ipaddress, and ↵Nick Coghlan2012-07-072-196/+498
| | | | | | | | ensure that errors are caught as expected
* | Issue 14814: %s implies coercion with str() - remove a lot of redundant ↵Nick Coghlan2012-07-071-34/+33
| | | | | | | | str() calls from the ipaddress implementation
* | Issue #15247: FileIO now raises an error when given a file descriptor ↵Antoine Pitrou2012-07-061-0/+8
|\ \ | |/ | | | | pointing to a directory.
| * Issue #15247: FileIO now raises an error when given a file descriptor ↵Antoine Pitrou2012-07-061-0/+8
| | | | | | | | pointing to a directory.
* | Issue 14814: Eliminate bytes warnings from ipaddress by correctly throwing ↵Nick Coghlan2012-07-062-31/+46
| | | | | | | | an exception early when given bytes data of the wrong length. Also removes 2.x backwards compatibility code from associated tests.
* | Issue 14814: Better handling of cases where octet/hextet parsing fails, ↵Nick Coghlan2012-07-062-39/+48
| | | | | | | | including ensuring that tracebacks are still clean even when calling class constructors directly
* | Issue #15261: Stop os.stat(fd) crashing on Windows when fd not open.Richard Oudkerk2012-07-062-0/+23
| |
* | Fix issue # 15033 - Return the proper exitcode for failure when modules are ↵Senthil Kumaran2012-07-051-0/+15
|\ \ | |/ | | | | invoked using -m switch. Patch contributed by Jeff Knupp
| * Fix issue # 15033 - Return the proper exitcode for failure when modules are ↵Senthil Kumaran2012-07-051-0/+15
| | | | | | | | invoked using -m switch. Patch contributed by Jeff Knupp
* | Issue #15210: Greatly simplify the test for supporting importlibBrett Cannon2012-07-042-14/+7
| | | | | | | | | | working without _frozen_importlib by moving to an import over a direct access in sys.modules.
* | Closes #14902: Fixed timezone conversion of a date/time in the past. Thanks ↵Vinay Sajip2012-07-031-2/+4
| | | | | | | | to Yuriy Syrovetskiy for the report and Juancarlo Añez for the patch on which this fix is based.
* | Issue #15241: Added test for venv prefixes.Vinay Sajip2012-07-031-0/+25
| |
* | Issue 15241: Improved site.py documentation relating to venvs.Vinay Sajip2012-07-031-2/+2
| |
* | Issue #15166: Re-implement imp.get_tag() using sys.implementation.Brett Cannon2012-07-022-2/+7
| | | | | | | | | | | | | | Also eliminates some C code in Python/import.c as well. Patch by Eric Snow with verification by comparing against another patch from Jeff Knupp.
* | Issue #15210: If _frozen_importlib is not found in sys.modules byBrett Cannon2012-07-022-2/+23
| | | | | | | | importlib.__init__, then catch the KeyError raised, not ImportError.
* | Closes #15030: Make importlib.abc.PyPycLoader respect the new .pycBrett Cannon2012-07-022-3/+13
| | | | | | | | | | | | | | file size header field. Thanks to Marc Abramowitz and Ronan Lamy for helping out with various parts of the patch.
* | Issue #15229: An OSError subclass whose __init__ doesn't call backAntoine Pitrou2012-06-301-0/+10
| | | | | | | | | | OSError.__init__ could produce incomplete instances, leading to crashes when calling str() on them.
* | - Issue #14330: For cross builds, don't use host python, use host search pathsdoko@ubuntu.com2012-06-301-2/+2
| | | | | | | | | | | | for host compiler. Add NEWS entry, rename _PROJECT_BASE to _PYTHON_PROJECT_BASE.
* | - Issue #14330: For cross builds, don't use host python, use host search pathsdoko@ubuntu.com2012-06-302-0/+12
| | | | | | | | for host compiler.
* | Issue #9239: add tests for modifying zipfile comments in append mode.Antoine Pitrou2012-06-301-0/+18
|\ \ | |/
| * Issue #9239: add tests for modifying zipfile comments in append mode.Antoine Pitrou2012-06-301-0/+18
| |
* | Issue #15225: improve error message when hmac is passed a wrong key type.Antoine Pitrou2012-06-302-1/+13
| | | | | | | | Patch by Marc Abramowitz.
* | Update GzipFile docstring to mention gzip.open()'s new text-mode support.Nadeem Vawda2012-06-301-1/+1
| |
* | urllib.parse cleanup. rename keywords used as variablesSenthil Kumaran2012-06-291-7/+7
|\ \ | |/
| * urllib.parse cleanup. rename keywords used as variablesSenthil Kumaran2012-06-291-7/+7
| |
* | Better diagnose test failureAntoine Pitrou2012-06-291-2/+2
|\ \ | |/