Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Issue #19884: Merge Readline updates from 3.5 | Martin Panter | 2016-08-27 | 1 | -0/+2 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #19884: Avoid spurious output on OS X with Gnu Readline | Martin Panter | 2016-08-27 | 1 | -0/+2 | |
| | | | | | | | | | | | | | | | Also adjust the test condition, because enable-meta-key was only added in 6.1, not 6.0. | |||||
* | | | Issue #12319: Always send file request bodies using chunked encoding | Martin Panter | 2016-08-27 | 1 | -4/+3 | |
| | | | | | | | | | | | | | | | | | | | | | 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. | |||||
* | | | Issue #26027, #27524: Add PEP 519/__fspath__() support to os and | Brett Cannon | 2016-08-26 | 1 | -1/+4 | |
| | | | | | | | | | | | | | | | | | | os.path. Thanks to Jelle Zijlstra for the initial patch against posixmodule.c. | |||||
* | | | Issue #10513: Merge from 3.5 | Berker Peksag | 2016-08-26 | 1 | -0/+3 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #10513: Fix a regression in Connection.commit() | Berker Peksag | 2016-08-26 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | | | Statements should not be reset after a commit. Backported from https://github.com/ghaering/pysqlite/commit/029050896b1e6058573abeef5a8970384c0c7faa | |||||
* | | | Issue #6057: Merge from 3.5 | Berker Peksag | 2016-08-24 | 1 | -0/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #6057: Document exceptions in sqlite3 module | Berker Peksag | 2016-08-24 | 1 | -0/+1 | |
| | | | | | | | | | | | | Patch by Jaysinh Shukla and Stéphane Wirtel. | |||||
* | | | Issue #12319: Move NEWS under beta 1 heading | Martin Panter | 2016-08-24 | 1 | -8/+8 | |
| | | | ||||||
* | | | Issue #12319: Support for chunked encoding of HTTP request bodies | Martin Panter | 2016-08-24 | 2 | -0/+9 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | |||||
* | | | Update NEWS. | Steven D'Aprano | 2016-08-24 | 1 | -1/+3 | |
| | | | ||||||
* | | | Backed out changeset 1017215f5492 | Mark Dickinson | 2016-08-23 | 1 | -3/+0 | |
| | | | ||||||
* | | | A new version of typing.py from https://github.com/python/typing. (Merge ↵ | Guido van Rossum | 2016-08-23 | 1 | -0/+6 | |
|\ \ \ | |/ / | | | | | | | 3.5->3.6) | |||||
| * | | A new version of typing.py from https://github.com/python/typing. | Guido van Rossum | 2016-08-23 | 1 | -0/+6 | |
| | | | ||||||
* | | | Issue 27598: Add Collections to collections.abc. | Guido van Rossum | 2016-08-23 | 1 | -0/+3 | |
| | | | | | | | | | | | | Patch by Ivan Levkivskyi, docs by Neil Girdhar. | |||||
* | | | Issue #26040 (part 1): add new testcases to cmath_testcases.txt. Thanks Jeff ↵ | Mark Dickinson | 2016-08-23 | 1 | -0/+3 | |
| | | | | | | | | | | | | Allen. | |||||
* | | | Issue #27832: Make _normalize parameter to Fraction.__init__ keyword-only. | Mark Dickinson | 2016-08-23 | 1 | -0/+3 | |
| | | | ||||||
* | | | Issue #12713: reverted fix pending further discussion. | Vinay Sajip | 2016-08-23 | 1 | -3/+0 | |
| | | | ||||||
* | | | Issue #27587: Merge from 3.5 | Berker Peksag | 2016-08-22 | 1 | -0/+4 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #27587: Move null pointer check earlier in _PyState_AddModule() | Berker Peksag | 2016-08-22 | 1 | -0/+4 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This was found by PVS-Studio: V595 The 'def' pointer was utilized before it was verified against nullptr. Check lines: 286, 292. pystate.c 286 Initial patch by Christian Heimes. | |||||
* | | | Issue #27792: force int return type for modulo operations involving bools. | Mark Dickinson | 2016-08-22 | 1 | -0/+4 | |
| | | | ||||||
* | | | Issue #27539: Merge from 3.5. | Mark Dickinson | 2016-08-22 | 2 | -0/+4 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #27539: Fix unnormalised Fraction.__pow__ result for negative exponent ↵ | Mark Dickinson | 2016-08-22 | 2 | -0/+4 | |
| | | | | | | | | | | | | and base. Thanks Vedran Čačić. | |||||
* | | | Issue #26984: int() now always returns an instance of exact int. | Serhiy Storchaka | 2016-08-21 | 1 | -0/+2 | |
| | | | ||||||
* | | | Issue #21718: Merge from 3.5 | Berker Peksag | 2016-08-21 | 1 | -0/+2 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #21718: cursor.description is now available for queries using CTEs | Berker Peksag | 2016-08-21 | 1 | -0/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to PEP 249, cursor.description must be available for any SELECT statements, such as those that use CTEs. Backported from https://github.com/ghaering/pysqlite/commit/f67fa9c898a4713850e16934046f0fe2cba8c44c Additional test cases added by me. | |||||
* | | | Issue #25604: Fix minor bug in integer true division, which could | Mark Dickinson | 2016-08-21 | 1 | -0/+4 | |
| | | | | | | | | | | | | have caused off-by-one-ulp results on certain platforms. | |||||
* | | | Issue #27662: add missing Misc/NEWS entry. | Mark Dickinson | 2016-08-21 | 1 | -0/+4 | |
| | | | ||||||
* | | | Merge #27782 fix from 3.5 | Nick Coghlan | 2016-08-21 | 2 | -0/+5 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #27782: Fix m_methods handling in multiphase init | Nick Coghlan | 2016-08-21 | 2 | -0/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | 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. | |||||
* | | | Issue #27487: Merge runpy warning from 3.5 | Martin Panter | 2016-08-21 | 1 | -0/+4 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #27487: Warn if submodule already imported before runpy execution | Martin Panter | 2016-08-21 | 1 | -0/+4 | |
| | | | | | | | | | | | | Also try to clarify the find_spec() error message. | |||||
* | | | Fix typo in IDLE News. | Terry Jan Reedy | 2016-08-21 | 1 | -3/+3 | |
|\ \ \ | |/ / | ||||||
| * | | Fix typo in IDLE News. | Terry Jan Reedy | 2016-08-21 | 1 | -1/+1 | |
| | | | ||||||
* | | | Add 3.6.0a4 IDLE NEWS and idlelib/NEWS.txt items. | Terry Jan Reedy | 2016-08-21 | 1 | -0/+29 | |
|\ \ \ | |/ / | ||||||
| * | | Add 3.5.3 IDLE NEWS and idlelib/NEWS.txt items. | Terry Jan Reedy | 2016-08-21 | 1 | -0/+9 | |
| | | | ||||||
* | | | Issue #27819: Simply default to gztar for sdist formats by default on all ↵ | Jason R. Coombs | 2016-08-20 | 1 | -0/+3 | |
| | | | | | | | | | | | | platforms. | |||||
* | | | issue26981: fix typo | Ethan Furman | 2016-08-20 | 1 | -1/+1 | |
| | | | ||||||
* | | | issue26981: add _order_ compatibility shim to enum.Enum | Ethan Furman | 2016-08-20 | 1 | -0/+3 | |
| | | | ||||||
* | | | Fix more typos | Martin Panter | 2016-08-20 | 1 | -2/+2 | |
| | | | ||||||
* | | | 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 #27787: Merge regrtest fixup from 3.5 | Martin Panter | 2016-08-20 | 1 | -0/+6 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #27787: Clean up weak references before checking for dangling threads | Martin Panter | 2016-08-20 | 1 | -0/+3 | |
| | | | ||||||
* | | | Issue26988: remove AutoEnum | Ethan Furman | 2016-08-20 | 1 | -2/+0 | |
| | | | ||||||
* | | | Issue #27713: merge from 3.5 | Ned Deily | 2016-08-20 | 1 | -0/+3 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #27713: Surpress spurious build warnings when updating importlib's | Ned Deily | 2016-08-20 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | | | | | | bootstrap files: Could not find platform dependent libraries <exec_prefix Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>] Patch by Xiang Zhang | |||||
* | | | Issue #27157: Make only type() itself accept the one-argument form | Berker Peksag | 2016-08-19 | 1 | -0/+3 | |
| | | | | | | | | | | | | Patch by Eryk Sun and Emanuel Barry. | |||||
* | | | Rewrap long lines in Misc/NEWS. | R David Murray | 2016-08-19 | 1 | -30/+38 | |
|\ \ \ | |/ / | | | | | | | Also moved news item for #2466 to the correct place. | |||||
| * | | Rewrap long lines in Misc/NEWS. | R David Murray | 2016-08-19 | 1 | -20/+26 | |
| | | |