Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #15767: Use ModuleNotFoundError. | Eric Snow | 2016-09-07 | 1 | -0/+7 |
| | |||||
* | #27331: add policy keyword argument to all MIME subclasses. | R David Murray | 2016-09-07 | 1 | -0/+7 |
| | | | | Patch by Berker Peksag. | ||||
* | Add the co_extra field and accompanying APIs to code objects. | Brett Cannon | 2016-09-07 | 1 | -1/+2 |
| | | | | This completes PEP 523. | ||||
* | Issue #26032: Optimized globbing in pathlib by using os.scandir(); it is now | Serhiy Storchaka | 2016-09-07 | 1 | -0/+3 |
| | | | | about 1.5--4 times faster. | ||||
* | Issue #27731: Opt-out of MAX_PATH on Windows 10 | Steve Dower | 2016-09-07 | 1 | -1/+4 |
| | |||||
* | Issue #6135: Adds encoding and errors parameters to subprocess | Steve Dower | 2016-09-07 | 1 | -0/+3 |
| | |||||
* | Issue #27959: Updates NEWS and whatsnew | Steve Dower | 2016-09-07 | 1 | -0/+6 |
| | |||||
* | Issue #27182: Add support for path-like objects to PyUnicode_FSDecoder(). | Brett Cannon | 2016-09-07 | 1 | -7/+11 |
| | |||||
* | Issue #26359: Add the --with-optimizations configure flag. | Brett Cannon | 2016-09-07 | 1 | -0/+4 |
| | | | | | The flag will activate LTO and PGO build support when available. Thanks to Alecsandur Patrascu of Intel for the original patch. | ||||
* | os.urandom() now blocks on Linux | Victor Stinner | 2016-09-06 | 1 | -0/+12 |
| | | | | | | | Issue #27776: The os.urandom() function does now block on Linux 3.17 and newer until the system urandom entropy pool is initialized to increase the security. This change is part of the PEP 524. | ||||
* | Add os.getrandom() | Victor Stinner | 2016-09-06 | 1 | -0/+4 |
| | | | | | | | Issue #27778: Expose the Linux getrandom() syscall as a new os.getrandom() function. This change is part of the PEP 524. | ||||
* | Remove redundant bullet point in 3.6.rst | Berker Peksag | 2016-09-06 | 1 | -2/+2 |
| | |||||
* | Closes #27982: Allow keyword arguments to winsound functions | Zachary Ware | 2016-09-06 | 1 | -0/+8 |
| | |||||
* | Issue #25596: Optimized glob() and iglob() functions in the | Serhiy Storchaka | 2016-09-06 | 1 | -0/+4 |
| | | | | glob module; they are now about 3--6 times faster. | ||||
* | Implement the frame evaluation API aspect of PEP 523. | Brett Cannon | 2016-09-05 | 1 | -0/+28 |
| | |||||
* | Issue #24254: Preserve class attribute definition order. | Eric Snow | 2016-09-05 | 1 | -0/+26 |
| | |||||
* | Issue #27919: Deprecate extra_path option in distutils. | Jason R. Coombs | 2016-09-01 | 1 | -0/+6 |
| | |||||
* | Closes #27904: Improved logging statements to defer formatting until needed. | Vinay Sajip | 2016-08-31 | 1 | -2/+2 |
| | |||||
* | Issue #27895: Spelling fixes (Contributed by Ville Skyttä). | Raymond Hettinger | 2016-08-30 | 1 | -1/+1 |
| | |||||
* | Issue #12319: Always send file request bodies using chunked encoding | Martin Panter | 2016-08-27 | 1 | -2/+9 |
| | | | | | | | The previous attempt to determine the file’s Content-Length gave a false positive for pipes on Windows. Also, drop the special case for sending zero-length iterable bodies. | ||||
* | Add a What's New entry for PEP 519 | Brett Cannon | 2016-08-26 | 1 | -0/+67 |
| | |||||
* | Merge | Raymond Hettinger | 2016-08-26 | 1 | -2/+2 |
|\ | |||||
| * | Issue 19504: Change "customise" to "customize" American spelling. | Raymond Hettinger | 2016-08-26 | 1 | -2/+2 |
| | | |||||
* | | Issue #12319: Support for chunked encoding of HTTP request bodies | Martin Panter | 2016-08-24 | 1 | -0/+19 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the body object is a file, its size is no longer determined with fstat(), since that can report the wrong result (e.g. reading from a pipe). Instead, determine the size using seek(), or fall back to chunked encoding for unseekable files. Also, change the logic for detecting text files to check for TextIOBase inheritance, rather than inspecting the “mode” attribute, which may not exist (e.g. BytesIO and StringIO). The Content-Length for text files is no longer determined ahead of time, because the original logic could have been wrong depending on the codec and newline translation settings. Patch by Demian Brecht and Rolf Krahl, with a few tweaks by me. | ||||
* | | #26907: add some missing getsockopt constants. | R David Murray | 2016-08-24 | 1 | -0/+4 |
| | | | | | | | | Patch by Christian Heimes, reviewed by Martin Panter. | ||||
* | | Issue #27819: Add more detail in What's New in 3.6. | Jason R. Coombs | 2016-08-21 | 1 | -0/+23 |
| | | |||||
* | | Merge spelling fixes from 3.5 | Martin Panter | 2016-08-20 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Minor spelling fixes | Martin Panter | 2016-08-20 | 1 | -1/+1 |
| | | |||||
* | | Issue #26823: fix traceback abbreviation docs | Nick Coghlan | 2016-08-16 | 1 | -3/+23 |
| | | | | | | | | | | | | - be clear builtin traceback display was also updated - show example output in What's New - fix versionadded markup | ||||
* | | Issue #26823: Abbreviate recursive tracebacks | Nick Coghlan | 2016-08-15 | 1 | -0/+12 |
| | | | | | | | | | | | | | | | | Large sections of repeated lines in tracebacks are now abbreviated as "[Previous line repeated {count} more times]" by both the traceback module and the builtin traceback rendering. Patch by Emanuel Barry. | ||||
* | | Issue #27574: Decreased an overhead of parsing keyword arguments in functions | Serhiy Storchaka | 2016-08-14 | 1 | -0/+7 |
| | | | | | | | | implemented with using Argument Clinic. | ||||
* | | Closes #27207: Merge with 3.5 | Zachary Ware | 2016-08-10 | 1 | -18/+31 |
|\ \ | |/ | |||||
| * | Issue #27207: Fix doctests in Doc/whatsnew/3.2.rst | Zachary Ware | 2016-08-10 | 1 | -18/+31 |
| | | | | | | | | Initial patch by Jelle Zijlstra. | ||||
* | | Issue #26754: Undocumented support of general bytes-like objects | Serhiy Storchaka | 2016-08-06 | 1 | -2/+3 |
| | | | | | | | | as path in compile() and similar functions is now deprecated. | ||||
* | | Issue #26800: Undocumented support of general bytes-like objects | Serhiy Storchaka | 2016-08-06 | 1 | -0/+5 |
| | | | | | | | | as paths in os functions is now deprecated. | ||||
* | | Closes #22829: Added --prompt option to venv. | Vinay Sajip | 2016-08-06 | 1 | -0/+8 |
| | | |||||
* | | Issue 27366: PEP 487 docs updates | Nick Coghlan | 2016-07-31 | 1 | -0/+9 |
| | | | | | | | | | | - Porting note for type keyword arg handling - __init_subclass__ note regarding metaclass hint | ||||
* | | Issue #27366: Implement PEP 487 | Nick Coghlan | 2016-07-30 | 1 | -0/+20 |
| | | | | | | | | | | | | - __init_subclass__ called when new subclasses defined - __set_name__ called when descriptors are part of a class definition | ||||
* | | Issue #26462: Merge code block fixes from 3.5 | Martin Panter | 2016-07-29 | 7 | -20/+50 |
|\ \ | |/ | |||||
| * | Issue #26462: Doc: reduce literal_block warnings, fix syntax highlighting. | Martin Panter | 2016-07-26 | 7 | -20/+50 |
| | | | | | | | | Patch by Julien Palard. | ||||
* | | Issue #27285: Cleanup "suspicious" warnings. | Ned Deily | 2016-07-11 | 2 | -5/+5 |
| | | |||||
* | | Issue #21708: Deprecated dbm.dumb behavior that differs from common dbm | Serhiy Storchaka | 2016-07-06 | 1 | -0/+5 |
| | | | | | | | | | | behavior: creating a database in 'r' and 'w' modes and modifying a database in 'r' mode. | ||||
* | | Issue #23034: The output of a special Python build with defined COUNT_ALLOCS, | Serhiy Storchaka | 2016-07-03 | 1 | -0/+10 |
| | | | | | | | | | | | | SHOW_ALLOC_COUNT or SHOW_TRACK_COUNT macros is now off by default. It can be re-enabled using the "-X showalloccount" option. It now outputs to stderr instead of stdout. | ||||
* | | Issue #27430: Merge from 3.5 | Berker Peksag | 2016-07-01 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #27430: Fix typos, patch by scop. | Berker Peksag | 2016-07-01 | 1 | -1/+1 |
| | | |||||
* | | Fix typo in whatsnew/3.6.rst | Berker Peksag | 2016-07-01 | 1 | -1/+1 |
| | | |||||
* | | Issue #26721: Change StreamRequestHandler.wfile to BufferedIOBase | Martin Panter | 2016-06-29 | 1 | -0/+6 |
| | | |||||
* | | Issue #22115: Added methods trace_add, trace_remove and trace_info in the | Serhiy Storchaka | 2016-06-26 | 1 | -0/+13 |
| | | | | | | | | | | | | tkinter.Variable class. They replace old methods trace_variable, trace, trace_vdelete and trace_vinfo that use obsolete Tcl commands and might not work in future versions of Tcl. | ||||
* | | Issue #26186: Remove the restriction that built-in and extension | Brett Cannon | 2016-06-25 | 1 | -0/+13 |
| | | | | | | | | | | | | | | | | modules can't be lazily loaded. Thanks to Python 3.6 allowing for types.ModuleType to have its __class__ mutated, the restriction can be lifted by calling create_module() on the wrapped loader. | ||||
* | | merge 3.5 | Benjamin Peterson | 2016-06-22 | 1 | -2/+2 |
|\ \ | |/ |