summaryrefslogtreecommitdiffstats
path: root/Misc/ACKS
Commit message (Collapse)AuthorAgeFilesLines
* Added proper spelling for the name Elazar.Alexander Belopolsky2016-09-161-1/+1
|
* Issue #28181: Add Kaartic Sivaraam to Misc/ACKS.Christian Heimes2016-09-161-0/+1
|
* Merge 3.5 - Issue #15308: Add 'interrupt execution' (^C) to Shell menu.Terry Jan Reedy2016-09-121-0/+1
|\ | | | | | | Patch by Roger Serwy, updated by Bayard Randel.
* | DTrace support: function calls, GC activity, line executionŁukasz Langa2016-09-101-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tested on macOS 10.11 dtrace, Ubuntu 16.04 SystemTap, and libbcc. Largely based by an initial patch by Jesús Cea Avión, with some influence from Dave Malcolm's SystemTap patch and Nikhil Benesch's unification patch. Things deliberately left out for simplicity: - ustack helpers, I have no way of testing them at this point since they are Solaris-specific - PyFrameObject * in function__entry/function__return, this is SystemTap-specific - SPARC support - dynamic tracing - sys module dtrace facility introspection All of those might be added later.
* | Merge: #14977: Make mailcap respect the order of the lines in the mailcap file.R David Murray2016-09-101-0/+1
|\ \ | |/
| * #14977: Make mailcap respect the order of the lines in the mailcap file.R David Murray2016-09-101-0/+1
| | | | | | | | | | This is required by RFC 1542, so despite the subtle behavior change we are treating it as a bug. Patch by Michael Lazar.
* | Issue #19489: Merge with 3.5Zachary Ware2016-09-091-0/+1
|\ \ | |/
| * Issue #19489: Add NEWS and ACKSZachary Ware2016-09-091-0/+1
| |
| * [backport to 3.5] - issue26896 - Disambiguate uses of "importer" with "finder".Senthil Kumaran2016-09-071-0/+1
| |
* | Remove duplicate entry for Ivan L.Guido van Rossum2016-09-091-1/+0
| |
* | Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-091-0/+1
| | | | | | | | Patch by Ivan Levkivskyi.
* | add recipes for pseudo-valueless enumsEthan Furman2016-09-071-0/+1
| |
* | Add Francisco Couzo to Misc/ACKS (for issue #27427 patch).Mark Dickinson2016-09-041-0/+1
| |
* | Issue #11734: Add support for IEEE 754 half-precision floats to the struct ↵Mark Dickinson2016-09-031-0/+1
| | | | | | | | module. Original patch by Eli Stevens.
* | Issue #6057: Merge from 3.5Berker Peksag2016-08-241-0/+1
|\ \ | |/
| * Issue #6057: Document exceptions in sqlite3 moduleBerker Peksag2016-08-241-0/+1
| | | | | | | | Patch by Jaysinh Shukla and Stéphane Wirtel.
* | Issue #12319: Support for chunked encoding of HTTP request bodiesMartin Panter2016-08-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Issue #27539: Merge from 3.5.Mark Dickinson2016-08-221-0/+1
|\ \ | |/
| * Issue #27539: Fix unnormalised Fraction.__pow__ result for negative exponent ↵Mark Dickinson2016-08-221-0/+1
| | | | | | | | and base. Thanks Vedran Čačić.
* | Merge #27782 fix from 3.5Nick Coghlan2016-08-211-0/+1
|\ \ | |/
| * Issue #27782: Fix m_methods handling in multiphase initNick Coghlan2016-08-211-0/+1
| | | | | | | | | | | | | | | | Multi-phase extension module import now correctly allows the ``m_methods`` field to be used to add module level functions to instances of non-module types returned from ``Py_create_mod``. Patch by Xiang Zhang.
* | Merge: #2466: ismount now recognizes mount points user can't access.R David Murray2016-08-191-0/+1
|\ \ | |/
| * #2466: ismount now recognizes mount points user can't access.R David Murray2016-08-191-0/+1
| | | | | | | | | | Patch by Robin Roth, reviewed by Serhiy Storchaka, comment wording tweaked by me.
* | [merge from 3.5] - Prevent HTTPoxy attack (CVE-2016-1000110)Senthil Kumaran2016-07-311-0/+1
|\ \ | |/ | | | | | | | | | | Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. Issue #27568 Reported and patch contributed by Rémi Rampin.
| * Issue #27453: CPP invocation in configure must use CPPFLAGS.Xavier de Gaye2016-07-301-0/+1
| | | | | | | | Patch by Chi Hsuan Yen.
* | Issue #27366: Implement PEP 487Nick Coghlan2016-07-301-0/+1
| | | | | | | | | | | | - __init_subclass__ called when new subclasses defined - __set_name__ called when descriptors are part of a class definition
* | Issue #27490: Merge pgen cross-compile logic from 3.5Martin Panter2016-07-281-0/+1
|\ \ | |/
| * Issue #27490: Do not build pgen when cross-compilingMartin Panter2016-07-281-0/+1
| | | | | | | | | | | | | | | | The dependendency on the $(PGEN) variable must only be set when not cross-compiling. When cross-compiling, $(PGEN) will not be used, so no need to build it. Patch by Thomas Perl.
* | Closes #25393: Merge with 3.5Zachary Ware2016-07-191-0/+1
|\ \ | |/
| * Issue #25393: Fix probable copy/paste error in resource docsZachary Ware2016-07-191-0/+1
| | | | | | | | Patch by Alakshendra Yadav.
* | Merge for #26844Brett Cannon2016-07-151-0/+1
|\ \ | |/
| * Issue #26844: Fix imp.find_module() to have the exception related toBrett Cannon2016-07-151-0/+1
| | | | | | | | | | | | type issues be about 'path' instead of 'name'. Thanks to Lev Maximov for the patch.
| * Issue #27238: Got rid of bare excepts in the turtle module. Original patchSerhiy Storchaka2016-06-141-0/+1
| | | | | | | | by Jelle Zijlstra.
* | Issue #26896: Disambiguate uses of "importer" with "finder".Brett Cannon2016-07-081-0/+1
| | | | | | | | Thanks to Oren Milman for the patch.
* | Issue #27285: Document the deprecation of the pyvenv script.Brett Cannon2016-07-081-0/+1
| | | | | | | | | | | | | | | | | | As part of the update, the documentation was updated to normalize around the term "virtual environment" instead of relying too heavily on "venv" for the same meaning and leading to inconsistent usage of either. Thanks to Steve Piercy for the patch.
* | Issue #26536: socket.ioctl now supports SIO_LOOPBACK_FAST_PATH. Patch by ↵Steve Dower2016-06-171-0/+1
| | | | | | | | Daniel Stokes.
* | Issue #16864: Cursor.lastrowid now supports REPLACE statementBerker Peksag2016-06-141-0/+1
| | | | | | | | Initial patch by Alex LordThorsen.
* | Merge 3.5, issue #14209Łukasz Langa2016-06-121-0/+1
|\ \ | |/
| * Issue #14209: pkgutil.iter_zipimport_modules ignores the prefix for packagesŁukasz Langa2016-06-121-0/+1
| | | | | | | | Patch by James Pickering.
* | Merge 3.5, issue #27194Łukasz Langa2016-06-111-0/+1
|\ \ | |/
| * Issue #27194: superfluous truncate calls in tarfile.py slow down extractionŁukasz Langa2016-06-111-0/+1
| | | | | | | | Patch by Jason Fried.
* | Merge Issue #22558.Terry Jan Reedy2016-06-111-0/+1
|\ \ | |/
| * Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-0/+1
| | | | | | | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* | Issue #25738: Merge HTTP server from 3.5Martin Panter2016-06-081-0/+1
|\ \ | |/
| * Issue #25738: Don’t send message body for 205 Reset ContentMartin Panter2016-06-081-0/+1
| | | | | | | | Patch by Susumu Koshiba.
* | Merge 3.5 (os.urandom)Victor Stinner2016-06-071-0/+1
|\ \ | |/
| * os.urandom() doesn't block on Linux anymoreVictor Stinner2016-06-071-0/+1
| | | | | | | | | | | | Issue #26839: On Linux, os.urandom() now calls getrandom() with GRND_NONBLOCK to fall back on reading /dev/urandom if the urandom entropy pool is not initialized yet. Patch written by Colm Buckley.
* | add Dusty Phillips to ACKSEthan Furman2016-06-041-0/+1
| |
* | Issue #19611: handle implicit parameters in inspect.signatureNick Coghlan2016-06-041-0/+1
| | | | | | | | | | | | | | | | inspect.signature now reports the implicit ``.0`` parameters generated by the compiler for comprehension and generator expression scopes as if they were positional-only parameters called ``implicit0``. Patch by Jelle Zijlstra.
* | Clean up urlopen doc string.R David Murray2016-06-041-0/+1
| | | | | | | | | | | | Clarifies what is returned when and that the methods are common between the two. Patch by Alexander Liu as part of #22797.