summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)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 s...Steve Dower2015-10-111-0/+3
* 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
* | Issue #25099: Skip relevant tests in test_compileall when an entry onBrett Cannon2015-10-091-0/+3
* | #25328: add missing raise keyword in decode_data+SMTPUTF8 check.R David Murray2015-10-091-0/+3
* | Issue #25089: Adds logging to installer for case where launcher is not select...Steve Dower2015-10-081-0/+3
* | 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
* | 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 when...Steve Dower2015-10-051-0/+3
* | 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. (Mer...Guido van Rossum2015-10-032-0/+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
| * Issue #25232: Fix CGIRequestHandler's splitting of URL queryMartin Panter2015-10-032-0/+4
* | 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
|\ \ | |/
| * Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:Serhiy Storchaka2015-10-021-0/+2
* | Issue #24483: C implementation of functools.lru_cache() now calculates key'sSerhiy Storchaka2015-10-021-0/+3
* | Issue #25165: Windows uninstallation should not remove launcher if other vers...Steve Dower2015-10-011-1/+4
* | Issue #25280: Import trace messages emitted in verbose (-v) mode are noSerhiy Storchaka2015-10-011-0/+3
|\ \ | |/
| * Issue #25280: Import trace messages emitted in verbose (-v) mode are noSerhiy Storchaka2015-10-011-0/+3
| * Issue #25003: os.urandom() doesn't use getentropy() on Solaris becauseVictor Stinner2015-10-011-0/+4
* | Issue #25003: On Solaris 11.3 or newer, os.urandom() now uses the getrandom()Victor Stinner2015-10-011-0/+5
* | Issue #25182: The stdprinter (used as sys.stderr before the io module isSerhiy Storchaka2015-09-301-0/+3
|\ \ | |/
| * Issue #25182: The stdprinter (used as sys.stderr before the io module isSerhiy Storchaka2015-09-301-0/+3
* | Issue #22958: Constructor and update method of weakref.WeakValueDictionarySerhiy Storchaka2015-09-291-0/+3
|\ \ | |/
| * Issue #22958: Constructor and update method of weakref.WeakValueDictionarySerhiy Storchaka2015-09-291-0/+3
* | Issue #22609: Constructor of collections.UserDict now accepts the self keywordSerhiy Storchaka2015-09-291-0/+3
|\ \ | |/
| * Issue #22609: Constructor of collections.UserDict now accepts the self keywordSerhiy Storchaka2015-09-291-0/+3
* | 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
|\ \ | |/
| * Issue #25262. Added support for BINBYTES8 opcode in Python implementation ofSerhiy Storchaka2015-09-291-0/+4
* | Also rewrote the guts of asyncio.Semaphore (patch by manipopopo). (Merge 3.4-...Guido van Rossum2015-09-291-1/+2
|\ \ | |/
| * Also rewrote the guts of asyncio.Semaphore (patch by manipopopo).Guido van Rossum2015-09-291-1/+2