summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* detect alpn by feature flag not openssl version (closes #23329)Benjamin Peterson2015-09-271-0/+3
|
* Issue #25135: Avoid possible reentrancy issues in deque_clear.Raymond Hettinger2015-09-261-0/+3
|
* merge 3.4Benjamin Peterson2015-09-261-0/+2
|\
| * prevent overflow in _Unpickler_ReadBenjamin Peterson2015-09-261-0/+2
| |
* | make opening brace of container literals and comprehensions correspond to ↵Benjamin Peterson2015-09-261-0/+3
| | | | | | | | the line number and col offset of the AST node (closes #25131)
* | Merge 3.4 -> 3.5Andrew Svetlov2015-09-241-0/+1
|\ \ | |/
| * Add Benjamin Hodgson to Misc/ACKAndrew Svetlov2015-09-241-0/+1
| |
* | Issue #12067: Merge comparisons doc from 3.4 into 3.5Martin Panter2015-09-231-0/+7
|\ \ | |/
| * Issue #12067: Rewrite Comparisons section in the language referenceMartin Panter2015-09-231-0/+7
| | | | | | | | | | | | | | Some of the details of comparing mixed types were incorrect or ambiguous. NotImplemented is only relevant at a lower level than the Expressions chapter. Added details of comparing range() objects, and default behaviour and consistency suggestions for user-defined classes. Patch from Andy Maier.
* | Issue #25047: Merge Element Tree encoding from 3.4 into 3.5Martin Panter2015-09-231-0/+4
|\ \ | |/
| * Issue #25047: Respect case writing XML encoding declarationsMartin Panter2015-09-231-0/+4
| | | | | | | | | | This restores the ability to write encoding names in uppercase like "UTF-8", which worked in Python 2.
| * Issue #19143: platform module now reads Windows version from kernel32.dll to ↵Steve Dower2015-09-231-0/+3
| | | | | | | | avoid compatibility shims.
* | Issues #25112: py.exe launcher is missing iconsSteve Dower2015-09-231-0/+2
| |
* | Issue #19143: platform module now reads Windows version from kernel32.dll to ↵Steve Dower2015-09-231-0/+3
| | | | | | | | avoid compatibility shims.
* | Issue #25102: Windows installer does not precompile for -O or -OO.Steve Dower2015-09-221-0/+2
| |
* | Issue #25081: Makes Back button in installer go back to upgrade page when ↵Steve Dower2015-09-221-0/+3
| | | | | | | | upgrading.
* | Issue #25126: Clarifies that the non-web installer will download some ↵Steve Dower2015-09-221-0/+3
| | | | | | | | components.
* | Issue #25091: Increases font size of the installer.Steve Dower2015-09-221-0/+2
| |
* | Issue #25092: Fix datetime.strftime() failure when errno was already set to ↵Steve Dower2015-09-221-0/+3
| | | | | | | | EINVAL.
* | Issue #25213: Restores requestedExecutionLevel to manifest to disable UAC ↵Steve Dower2015-09-221-0/+3
| | | | | | | | virtualization.
* | Issue #16893: Add idlelib.help.copy_strip() to copy-rstrip Doc/.../idle.html.Terry Jan Reedy2015-09-221-2/+2
|\ \ | |/ | | | | Change destination to help.html. Adjust NEWS entries.
| * Issue #16893: Add idlelib.help.copy_strip() to copy-rstrip Doc/.../idle.html.Terry Jan Reedy2015-09-221-2/+2
| | | | | | | | Change destination to help.html. Adjust NEWS entries.
* | Marge 3.4Terry Jan Reedy2015-09-211-2/+5
|\ \ | |/
| * Issue #24861: add Idle news item and correct previous errors.Terry Jan Reedy2015-09-211-2/+5
| |
* | Merge 3.4 (asyncio)Victor Stinner2015-09-211-0/+1
|\ \ | |/
| * Issue #23630, asyncio: host parameter of loop.create_server() can now be aVictor Stinner2015-09-211-0/+1
| | | | | | | | sequence of strings. Patch written by Yann Sionneau.
* | Add NEWS items for Idle.Terry Jan Reedy2015-09-211-0/+18
|\ \ | |/
| * Add NEWS items for Idle.Terry Jan Reedy2015-09-211-0/+15
| |
* | Issue #25176: Merge cgi.parse_qsl link from 3.4 into 3.5Martin Panter2015-09-201-0/+1
|\ \ | |/
| * Issue #25176: Correct link for cgi.parse_qsl; patch from Ville SkyttäMartin Panter2015-09-201-0/+1
| |
* | Issue #24915: Add Clang support to PGO builds and use the test suiteBrett Cannon2015-09-182-0/+4
| | | | | | | | | | | | for profile data. Thanks to Alecsandru Patrascu of Intel for the initial patch.
* | Issue #25150: Hide the private _Py_atomic_xxx symbols from the publicVictor Stinner2015-09-181-0/+4
| | | | | | | | | | | | | | | | | | Python.h header to fix a compilation error with OpenMP. PyThreadState_GET() becomes an alias to PyThreadState_Get() to avoid ABI incompatibilies. It is important that the _PyThreadState_Current variable is always accessed with the same implementation of pyatomic.h. Use the PyThreadState_Get() function so extension modules will all reuse the same implementation.
* | Merge 3.4 (datetime rounding)Victor Stinner2015-09-181-0/+8
|\ \ | |/
| * Issue #23517: Fix rounding in fromtimestamp() and utcfromtimestamp() methodsVictor Stinner2015-09-181-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | of datetime.datetime: microseconds are now rounded to nearest with ties going to nearest even integer (ROUND_HALF_EVEN), instead of being rounding towards zero (ROUND_DOWN). It's important that these methods use the same rounding mode than datetime.timedelta to keep the property: (datetime(1970,1,1) + timedelta(seconds=t)) == datetime.utcfromtimestamp(t) It also the rounding mode used by round(float) for example. Add more unit tests on the rounding mode in test_datetime.
* | Issue #25155: document the bugfix in Misc/NEWSVictor Stinner2015-09-181-0/+4
| | | | | | | | Oops, I forgot to document my change.
* | Issue #25108: Omitted internal frames in traceback functions print_stack(),Serhiy Storchaka2015-09-181-0/+3
| | | | | | | | format_stack(), and extract_stack() called without arguments.
* | Issue #25118: Fix a regression of Python 3.5.0 in os.waitpid() on Windows.Victor Stinner2015-09-151-0/+2
| | | | | | | | Add an unit test on os.waitpid()
* | Merge release engineering work from Python 3.5.0.Larry Hastings2015-09-131-3/+4
|\ \
| * | Post-release updates for Python 3.5.0.Larry Hastings2015-09-131-0/+12
| | |
| * | Version bump for Python 3.5.0 final.Larry Hastings2015-09-121-1/+2
| | |
| * | Regenerate pydoc topics, fix minor non-RST formatting in Misc/NEWS.Larry Hastings2015-09-121-1/+1
| | |
* | | Adds 3.5.0 header to Misc/NEWSSteve Dower2015-09-111-0/+5
| | |
* | | Merge from 3.5.0Steve Dower2015-09-111-0/+5
|\ \ \ | |/ /
| * | Issue #25071: Windows installer should not require TargetDir parameter when ↵Steve Dower2015-09-111-0/+5
| | | | | | | | | | | | installing quietly
* | | Merge 3.4Victor Stinner2015-09-111-0/+6
|\ \ \ | | |/ | |/|
| * | Issue #24684: socket.socket.getaddrinfo() now callsVictor Stinner2015-09-111-0/+6
| | | | | | | | | | | | | | | | | | | | | PyUnicode_AsEncodedString() instead of calling the encode() method of the host, to handle correctly custom string with an encode() method which doesn't return a byte string. The encoder of the IDNA codec is now called directly instead of calling the encode() method of the string.
* | | Issue #25030: Merge seek() doc fixes from 3.4 into 3.5Martin Panter2015-09-111-0/+1
|\ \ \ | |/ /
| * | Issue #25030: Do not document seek() as if it accepts keyword argumentsMartin Panter2015-09-111-0/+1
| | | | | | | | | | | | Patch from Shiyao Ma.
* | | compute stack effect of BUILD_MAP correctly (closes #25060)Benjamin Peterson2015-09-111-0/+2
| | |
* | | Issue #25022: Merge with 3.4Zachary Ware2015-09-101-0/+5
|\ \ \ | |/ /