summaryrefslogtreecommitdiffstats
path: root/Misc/ACKS
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* | Merge: #16484: Fix pydoc doc links to modules whose names are mixed case.R David Murray2016-06-031-0/+1
|\ \ | |/
| * #16484: Fix pydoc doc links to modules whose names are mixed case.R David Murray2016-06-031-0/+1
| | | | | | | | Patch by Sean Rodman, test by Kaushik N.
* | Merge: #26829: Clarify that namespace is copied to a new __dict__ in ↵R David Murray2016-06-031-0/+1
|\ \ | |/ | | | | instance creation.
| * #26829: Clarify that namespace is copied to a new __dict__ in instance creation.R David Murray2016-06-031-0/+1
| | | | | | | | Patch by Emily Morehouse.
* | Merge: #27185: move test_pep292 into test_string.R David Murray2016-06-021-0/+1
|\ \ | |/
| * #27185: move test_pep292 into test_string.R David Murray2016-06-021-0/+1
| | | | | | | | This makes the Template tests discoverable. Patch by Erin Braswell.
* | Merge: #20973: add total ordering tests for ipaddressR David Murray2016-06-021-0/+1
|\ \ | |/
| * #20973: add total ordering tests for ipaddressR David Murray2016-06-021-0/+1
| | | | | | | | Patch by Tommy Beadle.
| * Issue 25926: Clarify that the pure python equivalents are only approximate.Raymond Hettinger2016-05-281-0/+1
| |
* | Issue 25926: Clarify that the pure python equivalents are only approximate.Raymond Hettinger2016-05-281-0/+1
| |
* | Merge 3.5 (issue #27057)Victor Stinner2016-05-191-0/+1
|\ \ | |/
| * Fix os.set_inheritable() on AndroidVictor Stinner2016-05-191-0/+1
| | | | | | | | | | | | | | Issue #27057: Fix os.set_inheritable() on Android, ioctl() is blocked by SELinux and fails with EACCESS. The function now falls back to fcntl(). Patch written by Michał Bednarski.
* | Issue #26807: mock_open 'files' no longer error on readline at end of file.Robert Collins2016-05-161-0/+1
|\ \ | |/ | | | | Patch from Yolanda Robla.
| * Issue #26807: mock_open 'files' no longer error on readline at end of file.Robert Collins2016-05-161-0/+1
| | | | | | | | Patch from Yolanda Robla.