Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge from 3.6. | Serhiy Storchaka | 2016-12-02 | 1 | -0/+5 |
|\ | |||||
| * | Issue #27172: Undeprecate inspect.getfullargspec() | Nick Coghlan | 2016-12-02 | 1 | -0/+5 |
| | | | | | | | | | | | | This is still useful for single source Python 2/3 code migrating away from inspect.getargspec(), but that wasn't clear with the documented deprecation in place. | ||||
| * | Issue #28843: Fix asyncio C Task to handle exceptions __traceback__. | Yury Selivanov | 2016-12-01 | 1 | -0/+2 |
| | | |||||
| * | Add TCP_CONGESTION and TCP_USER_TIMEOUT | Victor Stinner | 2016-11-29 | 1 | -0/+4 |
| | | | | | | | | | | | | | | Issue #26273: Add new socket.TCP_CONGESTION (Linux 2.6.13) and socket.TCP_USER_TIMEOUT (Linux 2.6.37) constants. Patch written by Omar Sandoval. | ||||
* | | Add sys.getandroidapilevel() | Victor Stinner | 2016-12-02 | 1 | -0/+3 |
| | | | | | | | | | | | | | | Issue #28740: Add sys.getandroidapilevel(): return the build time API version of Android as an integer. Function only available on Android. | ||||
* | | Add TCP_CONGESTION and TCP_USER_TIMEOUT | Victor Stinner | 2016-11-29 | 1 | -0/+4 |
| | | | | | | | | | | | | | | Issue #26273: Add new socket.TCP_CONGESTION (Linux 2.6.13) and socket.TCP_USER_TIMEOUT (Linux 2.6.37) constants. Patch written by Omar Sandoval. | ||||
* | | Issue #28797: Modifying the class __dict__ inside the __set_name__ method of | Serhiy Storchaka | 2016-11-29 | 1 | -0/+4 |
|\ \ | |/ | | | | | | | a descriptor that is used inside that class no longer prevents calling the __set_name__ method of other descriptors. | ||||
| * | Issue #28797: Modifying the class __dict__ inside the __set_name__ method of | Serhiy Storchaka | 2016-11-29 | 1 | -0/+4 |
| | | | | | | | | | | a descriptor that is used inside that class no longer prevents calling the __set_name__ method of other descriptors. | ||||
* | | Issue #28799: Update Misc/SpecialBuilds.txt | Victor Stinner | 2016-11-28 | 1 | -11/+0 |
| | | | | | | | | Remove CALL_PROFILE. | ||||
* | | Remove CALL_PROFILE special build | Victor Stinner | 2016-11-28 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | Issue #28799: * Remove the PyEval_GetCallStats() function. * Deprecate the untested and undocumented sys.callstats() function. * Remove the CALL_PROFILE special build Use the sys.setprofile() function, cProfile or profile module to profile function calls. | ||||
* | | Issue #12844: More than 255 arguments can now be passed to a function. | Serhiy Storchaka | 2016-11-28 | 1 | -0/+2 |
| | | |||||
* | | Merge 3.6, fix for #24142 | Łukasz Langa | 2016-11-26 | 2 | -0/+4 |
|\ \ | |/ | |||||
| * | Merge 3.5, fix for #24142 | Łukasz Langa | 2016-11-26 | 2 | -0/+4 |
| |\ | |||||
| | * | Fixes #24142: [configparser] always join multiline values to not leave the ↵ | Łukasz Langa | 2016-11-26 | 2 | -0/+4 |
| | | | | | | | | | | | | parser in an invalid state | ||||
* | | | Issue #28796: Silence Sphinx warnings | Berker Peksag | 2016-11-25 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | WARNING: Inline emphasis start-string without end-string. Patch by Julien Palard. | ||||
* | | | Merge 3.6 | Victor Stinner | 2016-11-24 | 1 | -0/+4 |
|\ \ \ | |/ / | |||||
| * | | Fix _PyGen_yf() | Victor Stinner | 2016-11-24 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | Issue #28782: Fix a bug in the implementation ``yield from`` when checking if the next instruction is YIELD_FROM. Regression introduced by WORDCODE (issue #26647). Reviewed by Serhiy Storchaka and Yury Selivanov. | ||||
* | | | Issue #28774: Fix start/end pos in unicode_encode_ucs1(). | Xiang Zhang | 2016-11-23 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | Fix error position of the unicode error in ASCII and Latin1 encoders when a string returned by the error handler contains multiple non-encodable characters (non-ASCII for the ASCII codec, characters out of the U+0000-U+00FF range for Latin1). | ||||
* | | | Issue #28023: Fix python-gdb.py didn't support new dict implementation | INADA Naoki | 2016-11-22 | 1 | -0/+2 |
|\ \ \ | |/ / | |||||
| * | | Issue #28023: Fix python-gdb.py didn't support new dict implementation | INADA Naoki | 2016-11-22 | 1 | -0/+5 |
| | | | |||||
| * | | Start 3.6.0rc1. (Note, patch level was incorrectly set to 3.6.0b4+ following ↵ | Ned Deily | 2016-11-22 | 1 | -0/+12 |
| | | | | | | | | | | | | b3. It is now b4+ again.) | ||||
| * | | Version bump for 3.6.0b4v3.6.0b4 | Ned Deily | 2016-11-22 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #28761: The fields name and doc of structures PyMemberDef, PyGetSetDef, | Serhiy Storchaka | 2016-11-22 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | PyStructSequence_Field, PyStructSequence_Desc, and wrapperbase are now of type "const char *" rather of "char *". | ||||
* | | | merge | Raymond Hettinger | 2016-11-22 | 1 | -0/+4 |
|\ \ \ | |/ / | |||||
| * | | Issue #27100: With statement reports missing __enter__ before __exit__. ↵ | Raymond Hettinger | 2016-11-22 | 1 | -0/+4 |
| | | | | | | | | | | | | (Contributed by Jonathan Ellington.) | ||||
* | | | Issue #28752: Restored the __reduce__() methods of datetime objects. | Serhiy Storchaka | 2016-11-21 | 1 | -0/+2 |
|\ \ \ | |/ / | |||||
| * | | Issue #28752: Restored the __reduce__() methods of datetime objects. | Serhiy Storchaka | 2016-11-21 | 1 | -0/+2 |
| | | | |||||
* | | | NEWS update | Ethan Furman | 2016-11-21 | 1 | -0/+2 |
|\ \ \ | |/ / | |||||
| * | | issue28082: actually include NEWS entry | Ethan Furman | 2016-11-21 | 1 | -0/+2 |
| | | | |||||
* | | | update news and re doc | Ethan Furman | 2016-11-21 | 1 | -0/+2 |
|\ \ \ | |/ / | |||||
| * | | closes issue23591: add NEWS entry | Ethan Furman | 2016-11-21 | 1 | -0/+2 |
| | | | |||||
* | | | Issue #28731: Optimize _PyDict_NewPresized() to create correct size dict | INADA Naoki | 2016-11-21 | 1 | -0/+3 |
| | | | | | | | | | | | | Improve speed of dict literal with constant keys up to 30%. | ||||
* | | | Merge 3.6 | Victor Stinner | 2016-11-21 | 1 | -0/+5 |
|\ \ \ | |/ / | |||||
| * | | Implement rich comparison for _sre.SRE_Pattern | Victor Stinner | 2016-11-21 | 1 | -1/+6 |
| | | | | | | | | | | | | | | | | | | | | | Issue #28727: Regular expression patterns, _sre.SRE_Pattern objects created by re.compile(), become comparable (only x==y and x!=y operators). This change should fix the issue #18383: don't duplicate warning filters when the warnings module is reloaded (thing usually only done in unit tests). | ||||
* | | | Issue #28532: Show sys.version when -V option is supplied twice | INADA Naoki | 2016-11-21 | 2 | -1/+4 |
|\ \ \ | |/ / | |||||
| * | | Issue #28532: Show sys.version when -V option is supplied twice | INADA Naoki | 2016-11-21 | 2 | -1/+4 |
| | | | |||||
* | | | Issue #28748: Private variable _Py_PackageContext is now of type "const char *" | Serhiy Storchaka | 2016-11-21 | 1 | -0/+3 |
| | | | | | | | | | | | | rather of "char *". | ||||
* | | | Issue #20572: Remove the subprocess.Popen.wait endtime parameter. | Gregory P. Smith | 2016-11-21 | 1 | -0/+3 |
|\ \ \ | |/ / | | | | | | | It was deprecated in 3.4 and undocumented prior to that. | ||||
| * | | Issue #20572: The subprocess.Popen.wait method's undocumented endtime | Gregory P. Smith | 2016-11-21 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | parameter now raises a DeprecationWarning. It was deprecated in 3.4. It was never documented prior to that. | ||||
* | | | Merge typo fixes from 3.6 | Martin Panter | 2016-11-20 | 1 | -1/+1 |
|\ \ \ | |/ / | |||||
| * | | Fix typos in documentation | Martin Panter | 2016-11-20 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #25659: Merge ctypes fix from 3.6 | Martin Panter | 2016-11-20 | 1 | -0/+3 |
|\ \ \ | |/ / | |||||
| * | | Issue #25659: Merge ctypes fix from 3.5 | Martin Panter | 2016-11-20 | 1 | -0/+3 |
| |\ \ | | |/ | |||||
| | * | Issue #25659: Change assert to TypeError in from_buffer/_copy() | Martin Panter | 2016-11-20 | 1 | -0/+3 |
| | | | | | | | | | | | | Based on suggestion by Eryk Sun. | ||||
* | | | Issue #10656: Merge AIX build fix from 3.6 | Martin Panter | 2016-11-20 | 2 | -0/+5 |
|\ \ \ | |/ / | |||||
| * | | Issue #10656: Merge AIX build fix from 3.5 | Martin Panter | 2016-11-20 | 2 | -0/+5 |
| |\ \ | | |/ | |||||
| | * | Issue #10656: Fix out-of-tree building on AIX | Martin Panter | 2016-11-20 | 2 | -0/+5 |
| | | | | | | | | | | | | | | | The ld_so_aix script and python.exp file are created in the build directory. Patch by Tristan Carel and Michael Haubenwallner. | ||||
| * | | move the enable-optimizations mention to the correct Build section. | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-11-20 | 1 | -2/+2 |
| | | | |||||
* | | | Rename the new --with-optimiations flag to --enable-optimizations. | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-11-20 | 1 | -0/+2 |
|\ \ \ | |/ / | |||||
| * | | Rename the new --with-optimiations flag to --enable-optimizations. | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-11-20 | 1 | -0/+2 |
| |\ \ | | |/ |