summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #25143: Improves installer error messages for unsupported platforms.Steve Dower2015-10-111-0/+2
|
* Issue #25163: Display correct directory in installer when using non-default ↵Steve Dower2015-10-111-0/+3
| | | | settings.
* Issue #25361: Disables use of SSE2 instructions in Windows 32-bit buildSteve Dower2015-10-111-0/+2
|
* Issue #25364: zipfile now works in threads disabled builds.Serhiy Storchaka2015-10-101-0/+2
|
* Issue #25161: Merge full stops from 3.4 into 3.5Martin Panter2015-10-101-0/+1
|\
| * Issue #25161: Add full stops in documentation; patch by Takase ArihiroMartin Panter2015-10-101-0/+1
| |
* | Issue #24402: Merge input() fix from 3.4 into 3.5Martin Panter2015-10-101-0/+3
|\ \ | |/
| * Issue #24402: Fix input() when stdout.fileno() fails; diagnosed by EryksunMartin Panter2015-10-101-0/+3
| | | | | | | | Also factored out some test cases into a new PtyTests class.
* | Issue #25099: Skip relevant tests in test_compileall when an entry onBrett Cannon2015-10-091-0/+3
| | | | | | | | | | | | | | | | | | | | | | sys.path has an unwritable __pycache__ directory. This typically comes up when someone runs the test suite from an administrative install of Python on Windows where the user does not have write permissions to the stdlib's directory. Thanks to Zachary Ware and Matthias Klose for reporting bugs related to this issue.
* | #25328: add missing raise keyword in decode_data+SMTPUTF8 check.R David Murray2015-10-091-0/+3
| | | | | | | | | | | | | | This is a relatively benign bug, since having both be true was correctly rejected at in SMTPServer even before this patch. Patch by Xiang Zhang.
* | Issue #25089: Adds logging to installer for case where launcher is not ↵Steve Dower2015-10-081-0/+3
| | | | | | | | selected on upgrade.
* | Issue #23919: Prevents assert dialogs appearing in the test suite.Steve Dower2015-10-081-0/+2
| |
* | More typos in 3.5 documentation and commentsMartin Panter2015-10-071-2/+2
| |
* | Merge typo fixes from 3.4 into 3.5Martin Panter2015-10-072-2/+2
|\ \ | |/
| * Various minor typos in documentation and commentsMartin Panter2015-10-072-2/+2
| |
* | merge 3.4 (#24806)Benjamin Peterson2015-10-071-0/+3
|\ \ | |/
| * prevent unacceptable bases from becoming bases through multiple inheritance ↵Benjamin Peterson2015-10-071-0/+3
| | | | | | | | (#24806)
* | merge 3.4 (#25319)Benjamin Peterson2015-10-062-0/+4
|\ \ | |/
| * reinitialize an Event's Condition with a regular lock (closes #25319)Benjamin Peterson2015-10-062-0/+4
| |
* | Issue #25316: distutils raises OSError instead of DistutilsPlatformError ↵Steve Dower2015-10-051-0/+3
| | | | | | | | when MSVC is not installed.
* | Issue #23972: updates to asyncio datagram API. By Chris Laws. (Merge 3.4->3.5.)Guido van Rossum2015-10-052-0/+7
|\ \ | |/
| * Issue #23972: updates to asyncio datagram API. By Chris Laws.Guido van Rossum2015-10-052-0/+7
| |
* | Issue #24820: Update IDLE NEWS items.Terry Jan Reedy2015-10-041-0/+19
|\ \ | |/
| * Issue #24820: Update IDLE NEWS items.Terry Jan Reedy2015-10-041-0/+19
| |
* | Issue #24791: Escape rst markup char in NEWS entry to avoid Sphinx warning.Terry Jan Reedy2015-10-041-1/+1
| |
* | Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel. ↵Guido van Rossum2015-10-032-0/+5
|\ \ | |/ | | | | (Merge 3.4->3.5.)
| * Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel.Guido van Rossum2015-10-032-0/+5
| |
* | Issues #25232, #24657: Merge two CGI server fixes from 3.4 into 3.5Martin Panter2015-10-032-0/+7
|\ \ | |/
| * Issue #24657: Prevent CGIRequestHandler from collapsing the URL queryMartin Panter2015-10-031-0/+3
| | | | | | | | | | Initial patch from Xiang Zhang. Also fix out-of-date _url_collapse_path() doc string.
| * Issue #25232: Fix CGIRequestHandler's splitting of URL queryMartin Panter2015-10-032-0/+4
| | | | | | | | Patch from Xiang Zhang.
* | asyncio: Make ensure_future() accept all kinds of awaitables.Yury Selivanov2015-10-021-0/+2
|\ \ | |/
* | Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:Serhiy Storchaka2015-10-021-0/+2
|\ \ | |/ | | | | | | | | | | 1. Non-ASCII bytes were accepted after shift sequence. 2. A low surrogate could be emitted in case of error in high surrogate. 3. In some circumstances the '\xfd' character was produced instead of the replacement character '\ufffd' (due to a bug in _PyUnicodeWriter).
| * Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:Serhiy Storchaka2015-10-021-0/+2
| | | | | | | | | | 1. Non-ASCII bytes were accepted after shift sequence. 2. A low surrogate could be emitted in case of error in high surrogate.
* | Issue #24483: C implementation of functools.lru_cache() now calculates key'sSerhiy Storchaka2015-10-021-0/+3
| | | | | | | | hash only once.
* | Issue #25165: Windows uninstallation should not remove launcher if other ↵Steve Dower2015-10-011-1/+4
| | | | | | | | versions remain
* | Issue #25280: Import trace messages emitted in verbose (-v) mode are noSerhiy Storchaka2015-10-011-0/+3
|\ \ | |/ | | | | longer formatted twice.
| * Issue #25280: Import trace messages emitted in verbose (-v) mode are noSerhiy Storchaka2015-10-011-0/+3
| | | | | | | | longer formatted twice.
| * Issue #25003: os.urandom() doesn't use getentropy() on Solaris becauseVictor Stinner2015-10-011-0/+4
| | | | | | | | | | getentropy() is blocking, whereas os.urandom() should not block. getentropy() is supported since Solaris 11.3.
* | Issue #25003: On Solaris 11.3 or newer, os.urandom() now uses the getrandom()Victor Stinner2015-10-011-0/+5
| | | | | | | | | | | | function instead of the getentropy() function. The getentropy() function is blocking to generate very good quality entropy, os.urandom() doesn't need such high-quality entropy.
* | Issue #25182: The stdprinter (used as sys.stderr before the io module isSerhiy Storchaka2015-09-301-0/+3
|\ \ | |/ | | | | imported at startup) now uses the backslashreplace error handler.
| * Issue #25182: The stdprinter (used as sys.stderr before the io module isSerhiy Storchaka2015-09-301-0/+3
| | | | | | | | imported at startup) now uses the backslashreplace error handler.
* | Issue #22958: Constructor and update method of weakref.WeakValueDictionarySerhiy Storchaka2015-09-291-0/+3
|\ \ | |/ | | | | now accept the self and the dict keyword arguments.
| * Issue #22958: Constructor and update method of weakref.WeakValueDictionarySerhiy Storchaka2015-09-291-0/+3
| | | | | | | | now accept the self and the dict keyword arguments.
* | Issue #22609: Constructor of collections.UserDict now accepts the self keywordSerhiy Storchaka2015-09-291-0/+3
|\ \ | |/ | | | | argument.
| * Issue #22609: Constructor of collections.UserDict now accepts the self keywordSerhiy Storchaka2015-09-291-0/+3
| | | | | | | | argument.
* | Issue #25111: Fixed comparison of traceback.FrameSummary.Serhiy Storchaka2015-09-291-0/+2
| |
* | Issue #25262. Added support for BINBYTES8 opcode in Python implementation ofSerhiy Storchaka2015-09-291-0/+4
|\ \ | |/ | | | | | | unpickler. Highest 32 bits of 64-bit size for BINUNICODE8 and BINBYTES8 opcodes no longer silently ignored on 32-bit platforms in C implementation.
| * Issue #25262. Added support for BINBYTES8 opcode in Python implementation ofSerhiy Storchaka2015-09-291-0/+4
| | | | | | | | | | unpickler. Highest 32 bits of 64-bit size for BINUNICODE8 and BINBYTES8 opcodes no longer silently ignored on 32-bit platforms in C implementation.
* | Also rewrote the guts of asyncio.Semaphore (patch by manipopopo). (Merge ↵Guido van Rossum2015-09-291-1/+2
|\ \ | |/ | | | | 3.4->3.5.)
| * Also rewrote the guts of asyncio.Semaphore (patch by manipopopo).Guido van Rossum2015-09-291-1/+2
| |