Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #25801: Fixed resource warnings in test_zipfile64. | Serhiy Storchaka | 2016-02-25 | 1 | -2/+6 |
| | | | | Patch by SilentGhost. | ||||
* | Issue #25136: Add reference to 'xcode-select --install' to Mac README. | Ned Deily | 2016-02-24 | 1 | -1/+6 |
| | |||||
* | Change OS X installer builds targeted for 10.10 and above to build | Ned Deily | 2016-02-24 | 1 | -2/+7 |
| | | | | | | | | | and link with a private copy of OpenSSL, like installers targeted for 10.5 already do, since Apple has deprecated use of the system OpenSSL and removed its header files from the Xcode 7 SDK. Note that this configuration is not currently used to build any python.org-supplied installers and that the private copy of OpenSSL requires its own root certificates. | ||||
* | Issue #25136: Support Apple Xcode 7's new textual SDK stub libraries. | Ned Deily | 2016-02-24 | 4 | -2/+42 |
| | | | | | | | | | | | | | | | As of Xcode 7, SDKs for Apple platforms now include textual-format stub libraries whose file names have a .tbd extension rather than the standard OS X .dylib extension. The Apple compiler tool chain handles these stub libraries transparently and the installed system shared libraries are still .dylibs. However, the new stub libraries cause problems for third-party programs that support building with Apple SDKs and make build-time decisions based on the presence or paths of system-supplied shared libraries in the SDK. In particular, building Python itself with an SDK fails to find system-supplied libraries during setup.py's build of standard library extension modules. The solution is to have find_library_file() in Distutils search for .tbd files, along with the existing types (.a, .so, and .dylib). Patch by Tim Smith. | ||||
* | Issue #26302: Correctly identify comma as an invalid character for a cookie ↵ | Anish Shah | 2016-02-07 | 3 | -1/+10 |
| | | | | (correcting regression in Python 3.5). | ||||
* | Fixed a bug in os.walk() with bytes path on Windows caused by merging fixes | Serhiy Storchaka | 2016-02-24 | 1 | -1/+1 |
| | | | | for issues #25995 and #25911. | ||||
* | Issue #25913: Leading <~ is optional now in base64.a85decode() with adobe=True. | Serhiy Storchaka | 2016-02-24 | 3 | -6/+13 |
| | | | | Patch by Swati Jaiswal. | ||||
* | Issue #5824: Fix DatagramRequestHandler tests by binding the client socket | Martin Panter | 2016-02-24 | 2 | -29/+20 |
| | |||||
* | Issue #22088: Clarify base-64 alphabets and which characters are discarded | Martin Panter | 2016-02-23 | 3 | -79/+92 |
| | | | | | | | | | | * There are only two base-64 alphabets defined by the RFCs, not three * Due to the internal translation, plus (+) and slash (/) are never discarded * standard_ and urlsafe_b64decode() discard characters as well Also update the doc strings to clarify data types, based on revision 92760d2edc9e, correct the exception raised by b16decode(), and correct the parameter name for the base-85 functions. | ||||
* | Issue #26406: Avoid unnecessary serialization of getaddrinfo(3) calls on | Ned Deily | 2016-02-23 | 2 | -4/+13 |
| | | | | current versions of OpenBSD and NetBSD. Patch by A. Jesse Jiryu Davis. | ||||
* | Update example; str(float) changed so there is difference now. | Georg Brandl | 2016-02-22 | 1 | -5/+5 |
| | |||||
* | Issue #26268: Update Windows builds to use OpenSSL 1.0.2f | Zachary Ware | 2016-02-22 | 7 | -12/+14 |
| | |||||
* | Issue #26268: Update the prepare_ssl.py script | Zachary Ware | 2016-02-22 | 2 | -110/+59 |
| | | | | | | | | | It can now handle OpenSSL versions 1.0.2e and greater, which don't include include files in include/. Note that sources prepared by this script no longer support the old project files for 2.7; you now have to have Perl available to use the old build_ssl.py script with sources from svn.python.org. | ||||
* | Issue #26261: Clarify NamedTemporaryFile name attribute vs file.name | Martin Panter | 2016-02-22 | 2 | -3/+4 |
| | |||||
* | Fix errors in XML-RPC client example code | Martin Panter | 2016-02-22 | 1 | -4/+4 |
| | | | | | | | * http.client.HTTP (does not exist in Python 3) → HTTPConnection * Server (deprecated) → ServerProxy * Transport.send_request() grew a new “debug” parameter in Python 3 (revision a528f7f8f97a) | ||||
* | Issue #26401: Fix compile() documentation | Berker Peksag | 2016-02-21 | 1 | -1/+5 |
| | | | | | | | After 25032ec29315, compile() will raise a ValueError if source contains null bytes. Patch by SilentGhost. | ||||
* | Fix some typos in the NEWS file | Brett Cannon | 2016-02-21 | 1 | -1/+1 |
| | |||||
* | List what classes from importlib.machinery don't work with ↵ | Brett Cannon | 2016-02-21 | 1 | -1/+2 |
| | | | | importlib.util.LazyLoader | ||||
* | Issue #26186: Remove an invalid type check in | Brett Cannon | 2016-02-21 | 4 | -6/+3 |
| | | | | | | | | | | | importlib.util.LazyLoader. The class was checking its argument as to whether its implementation of create_module() came directly from importlib.abc.Loader. The problem is that the classes coming from imoprtlib.machinery do not directly inherit from the ABC as they come from _frozen_importlib. Because the documentation has always said that create_module() was ignored, the check has simply been removed. | ||||
* | Issue #26367: Have importlib.__init__() raise RuntimeError when | Brett Cannon | 2016-02-20 | 4 | -371/+381 |
| | | | | | | | 'level' is specified but no __package__. This brings the function inline with builtins.__import__(). Thanks to Manuel Jacob for the patch. | ||||
* | Added simple threading example to logging cookbook. | Vinay Sajip | 2016-02-20 | 1 | -0/+55 |
| | |||||
* | Issues #22468, #21996, #22208: Clarify gettarinfo() and TarInfo usage | Martin Panter | 2016-02-19 | 2 | -20/+28 |
| | | | | | | | | * The Windows-specific binary notice was probably a Python 2 thing * Make it more obvious gettarinfo() is based on stat(), and that non-ordinary files may need special care * The file name must be text; suggest dummy arcname as a workaround * Indicate TarInfo may be used directly, not just via gettarinfo() | ||||
* | Closes #20169: fix inner links random doc. | Georg Brandl | 2016-02-19 | 1 | -6/+6 |
| | |||||
* | Issue #15608: Improve socketserver module documentation | Martin Panter | 2016-02-19 | 1 | -154/+202 |
| | | | | | | | | | | | * Add headings for each concrete and mix-in class and list methods and attributes under them * Fix class and method cross references * Changed RequestHandler to BaseRequestHandler and added class heading * Pull out Stream/DatagramRequestHandler definitions * Reordered the request handler setup(), handle(), finish() methods * Document constructor parameters for the server classes * Remove version 2.6 not relevant for Python 3 documentation | ||||
* | Issue #26309: Rewrite test in main thread and avoid race condition | Martin Panter | 2016-02-19 | 1 | -24/+21 |
| | |||||
* | Issue #16915: Clarify that mode parameter of socket.makefile() does not accept | Berker Peksag | 2016-02-18 | 3 | -4/+19 |
| | | | | the same values as open(). | ||||
* | Issue #26309: Shut down socketserver request if verify_request() is false | Martin Panter | 2016-02-18 | 3 | -0/+30 |
| | | | | Patch by Aviv Palivoda. | ||||
* | fix typo (closes #26378) | Benjamin Peterson | 2016-02-18 | 1 | -1/+1 |
| | |||||
* | merge 3.4 (closes #25939) | Benjamin Peterson | 2016-02-18 | 2 | -2/+8 |
|\ | |||||
| * | open the cert store readonly | Benjamin Peterson | 2016-02-18 | 2 | -2/+8 |
| | | | | | | | | Patch from Chi Hsuan Yen. | ||||
* | | Issue #26368: fix typo in asynchio stream doc, reported by Ryan Stuart. | Ned Deily | 2016-02-16 | 1 | -1/+1 |
| | | |||||
* | | Issue #25924: Avoid unnecessary serialization of getaddrinfo(3) calls on OS X | Ned Deily | 2016-02-15 | 2 | -2/+21 |
| | | | | | | | | versions 10.5 or higher. Original patch by A. Jesse Jiryu Davis. | ||||
* | | Issue #26268: Update OS X 10.5+ installer build to use OpenSSL 1.0.2f. | Ned Deily | 2016-02-15 | 3 | -22/+8 |
| | | |||||
* | | Issue #26316: Fix variable name typo in Argument Clinic | Martin Panter | 2016-02-14 | 2 | -1/+7 |
| | | |||||
* | | Issue #25887: Raise a RuntimeError when a coroutine is awaited more than once. | Yury Selivanov | 2016-02-13 | 4 | -12/+169 |
| | | |||||
* | | Fixes #26348: Corrected typos in activate.fish script. | Vinay Sajip | 2016-02-13 | 1 | -2/+2 |
| | | |||||
* | | Issue #25995: os.walk() no longer uses FDs proportional to the tree depth. | Serhiy Storchaka | 2016-02-11 | 2 | -11/+4 |
| | | |||||
* | | Issue #26325: Added test.support.check_no_resource_warning() to check that | Serhiy Storchaka | 2016-02-11 | 5 | -20/+32 |
| | | | | | | | | no ResourceWarning is emitted. | ||||
* | | Hopefully clarify the difference between Optional[t] and an optional argument. | Guido van Rossum | 2016-02-10 | 1 | -0/+7 |
| | | |||||
* | | Issue #25698: Prevent possible replacing imported module with the empty one | Serhiy Storchaka | 2016-02-10 | 1 | -2/+6 |
| | | | | | | | | if the stack is too deep. | ||||
* | | Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similar | Martin Panter | 2016-02-10 | 25 | -76/+76 |
| | | | | | | | | | | The original form is incorrect grammar and feels awkward, even though the meaning is clear. | ||||
* | | Issues #26310, #26311: Fix typos in the documentation and code comments | Martin Panter | 2016-02-10 | 8 | -9/+9 |
| | | |||||
* | | Issue #25983: Added tests for multi-argument type(). | Serhiy Storchaka | 2016-02-08 | 1 | -0/+155 |
| | | |||||
* | | Clarify "cardinality of" as "number of elements in" as many readers do | Gregory P. Smith | 2016-02-08 | 1 | -1/+1 |
| | | | | | | | | not have a math vocabulary. | ||||
* | | Updates build to use SHA256 hash when signing files. | Steve Dower | 2016-02-08 | 1 | -1/+1 |
| | | |||||
* | | Issue #26117: The os.scandir() iterator now closes file descriptor not only | Serhiy Storchaka | 2016-02-08 | 2 | -17/+23 |
| | | | | | | | | when the iteration is finished, but when it was failed with error. | ||||
* | | Issue #25911: Restored support of bytes paths in os.walk() on Windows. | Serhiy Storchaka | 2016-02-08 | 3 | -10/+41 |
| | | |||||
* | | Issue #26045: Add UTF-8 suggestion to error in http.client | Martin Panter | 2016-02-09 | 3 | -2/+20 |
| | | | | | | | | Based on patch by Guido van Rossum. | ||||
* | | Issue #26198: Make datetime error tests more lenient. | Serhiy Storchaka | 2016-02-08 | 1 | -3/+3 |
| | | |||||
* | | Issue #26198: Fixed error messages for some argument parsing errors. | Serhiy Storchaka | 2016-02-07 | 3 | -14/+23 |
| | | | | | | | | | | Fixed the documented about buffer overflow error for "es#" and "et#" format units. |