| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | fix news headerv2.7.7 | Benjamin Peterson | 2014-05-31 | 1 | -2/+2 |
| | | |||||
| * | bump to 2.7.7 final | Benjamin Peterson | 2014-05-31 | 6 | -8/+22 |
| | | |||||
| * | openssl requires nasm (#21462) | Benjamin Peterson | 2014-05-31 | 1 | -2/+2 |
| | | |||||
| * | Issue #21462 PEP 466: upgrade OpenSSL in the Python 2.7 Windows builds | Steve Dower | 2014-05-30 | 2 | -2/+4 |
| | | |||||
| * | include test data in the windows installer, so tests don't fail (closes #19866) | Benjamin Peterson | 2014-05-18 | 1 | -0/+4 |
| | | |||||
| * | Added tag v2.7.7rc1 for changeset e32e3a9f3902 | Benjamin Peterson | 2014-05-18 | 1 | -0/+1 |
| | | |||||
| * | bump to 2.7.7rc1v2.7.7rc1 | Benjamin Peterson | 2014-05-18 | 6 | -12/+12 |
| | | |||||
| * | update pydoc_topics | Benjamin Peterson | 2014-05-18 | 1 | -6/+6 |
| | | |||||
| * | 'sunos' not 'solaris | Benjamin Peterson | 2014-05-17 | 1 | -1/+1 |
| | | |||||
| * | just skip this test on Solaris | Benjamin Peterson | 2014-05-17 | 1 | -5/+5 |
| | | |||||
| * | some platforms apparently don't care about fdopen'ing with a different mode | Benjamin Peterson | 2014-05-17 | 1 | -1/+5 |
| | | |||||
| * | support pep 3118 format strings for ctypes objects with nontrivial shapes ↵ | Benjamin Peterson | 2014-05-17 | 5 | -15/+75 |
| | | | | | | | (closes #10744) Patch from Matti Picus. | ||||
| * | reindent for consistency | Benjamin Peterson | 2014-05-17 | 1 | -3/+3 |
| | | |||||
| * | Document changes to OS X installer configurations for 2.7.7. | Ned Deily | 2014-05-17 | 5 | -97/+242 |
| | | | | | | | | | | | | | | | As of 2.7.8, the 32-bit-only installer will support OS X 10.5 and later systems as is currently done for Python 3.x installers. For 2.7.7 only, we will provide three installers: the legacy deprecated 10.3+ 32-bit-only format; the newer 10.5+ 32-bit-only format; and the unchanged 10.6+ 64-/32-bit format. Although binary installers will no longer be available from python.org as of 2.7.8, it will still be possible to build from source on 10.3.9 and 10.4 systems if necessary. | ||||
| * | Backport Fix for Issue #7776: Fix ``Host:'' header and reconnection when ↵ | Senthil Kumaran | 2014-05-17 | 3 | -18/+88 |
| | | | | | | | using http.client.HTTPConnection.set_tunnel(). Patch by Nikolaus Rath. | ||||
| * | Issue #18104: revise docstrings, remove obsolete comments. | Terry Jan Reedy | 2014-05-16 | 1 | -29/+32 |
| | | |||||
| * | Issue #21488: Oops, the patch for codecs.encode/decode doc was written by | Victor Stinner | 2014-05-14 | 1 | -1/+0 |
| | | | | | | Berker Peksag (already present in Misc/ACKS). The issue was reported by Brad Aylsworth. | ||||
| * | Issue #21488: Fix doc of codecs.decode() and codecs.encode(), no keyword ↵ | Victor Stinner | 2014-05-14 | 2 | -6/+9 |
| | | | | | | | support. Patch written by Brad Aylsworth. | ||||
| * | #21347: use string not list in shell=True example. | R David Murray | 2014-05-14 | 1 | -1/+1 |
| | | | | | Patch by Akira. | ||||
| * | Issue #21470: Do a better job seeding the random number generator | Raymond Hettinger | 2014-05-14 | 2 | -1/+6 |
| | | | | | to fully cover its state space. | ||||
| * | Issue 21469: Mitigate risk of false positives with robotparser. | Raymond Hettinger | 2014-05-13 | 2 | -2/+16 |
| | | | | | | | | | | | | | | | | | | | | * Repair the broken link to norobots-rfc.txt. * HTTP response codes >= 500 treated as a failed read rather than as a not found. Not found means that we can assume the entire site is allowed. A 5xx server error tells us nothing. * A successful read() or parse() updates the mtime (which is defined to be "the time the robots.txt file was last fetched"). * The can_fetch() method returns False unless we've had a read() with a 2xx or 4xx response. This avoids false positives in the case where a user calls can_fetch() before calling read(). * I don't see any easy way to test this patch without hitting internet resources that might change or without use of mock objects that wouldn't provide must reassurance. | ||||
| * | whitespace | Terry Jan Reedy | 2014-05-12 | 1 | -1/+0 |
| | | |||||
| * | Issue #18104: Add idlelib/idle_test/htest.py with a few sample tests to begin | Terry Jan Reedy | 2014-05-12 | 5 | -31/+117 |
| | | | | | | consolidating and improving human-validated tests of Idle. Change other files as needed to work with htest. Running the module as __main__ runs all tests. | ||||
| * | use logical rather than bit and | Benjamin Peterson | 2014-05-11 | 1 | -1/+1 |
| | | |||||
| * | this file now has utf-8 chars | Benjamin Peterson | 2014-05-11 | 1 | -0/+2 |
| | | |||||
| * | cast away warnings | Benjamin Peterson | 2014-05-11 | 1 | -2/+2 |
| | | |||||
| * | backport hmac.compare_digest to partially implement PEP 466 (closes #21306) | Benjamin Peterson | 2014-05-11 | 5 | -1/+278 |
| | | | | | Backport from Alex Gaynor. | ||||
| * | remove confusing delete indexing (closes #21466) | Benjamin Peterson | 2014-05-11 | 1 | -2/+0 |
| | | |||||
| * | Issue #21476 Include idle icon files in Windows installer | Steve Dower | 2014-05-11 | 1 | -0/+1 |
| | | |||||
| * | Backport 4e9f1017355f from #3561. | Brian Curtin | 2014-05-10 | 2 | -3/+23 |
| | | | | | | This brings the option to install Python on the Windows Path. Committed per Benjamin Peterson's approval on python-dev. | ||||
| * | Issue #21350: Fix file.writelines() to accept arbitrary buffer objects, as ↵ | Antoine Pitrou | 2014-05-08 | 3 | -7/+17 |
| | | | | | | | advertised. Patch by Brian Kearns. | ||||
| * | - Issue #17752: Fix distutils tests when run from the installed location. | doko@ubuntu.com | 2014-05-07 | 4 | -15/+17 |
| | | |||||
| * | Add prompts to interactive example. | Zachary Ware | 2014-05-06 | 1 | -8/+8 |
| | | | | | | This makes it match the new example below, and allows Sphinx's "hide the prompts and output" feature to work. | ||||
| * | Issue #21366: Document the fact that ``return`` in a ``finally`` clause | Zachary Ware | 2014-05-06 | 1 | -0/+14 |
| | | | | | overrides a ``return`` in the ``try`` suite. | ||||
| * | Issue 21375: Fix possible Py_ssizet overflow in heapq. | Raymond Hettinger | 2014-05-03 | 1 | -8/+8 |
| | | |||||
| * | Issue #18604: Consolidated checks for GUI availability. | Zachary Ware | 2014-05-02 | 6 | -77/+65 |
| | | | | | | | | | test_support._is_gui_available is now defined the same way on every platform, and now includes the Windows-specific check that had been in the Windows version of _is_gui_available and the OSX-specific check that was in runtktests.check_tk_availability. Also, every platform checks whether Tk can be instantiated (if the platform-specific checks passed). | ||||
| * | Issue #19630 Emphasise that the file parameter to marshal.dump must be a ↵ | Tim Golden | 2014-04-29 | 1 | -2/+3 |
| | | | | | real file object | ||||
| * | Issue #21321: itertools.islice() now releases the reference to the source ↵ | Antoine Pitrou | 2014-04-29 | 4 | -5/+25 |
| | | | | | | | iterator when the slice is exhausted. Patch by Anton Afanasyev. | ||||
| * | Closes #21055: Index (augmented) assignment symbols. | Terry Jan Reedy | 2014-04-29 | 1 | -0/+13 |
| | | |||||
| * | Closes 21048: Index 'as' in import and with statements. | Terry Jan Reedy | 2014-04-29 | 2 | -1/+4 |
| | | |||||
| * | Closes #21026: Augment site doc based on experiments. Patch by Carol Willing. | Terry Jan Reedy | 2014-04-29 | 2 | -1/+6 |
| | | |||||
| * | #21225: copy docstrings from base classes | Andrew Kuchling | 2014-04-25 | 1 | -3/+4 |
| | | |||||
| * | Issue #9291 Add ACKS & NEWS | Tim Golden | 2014-04-27 | 2 | -0/+5 |
| | | |||||
| * | Issue #9291 Do not attempt to re-encode mimetype data read from registry in ↵ | Tim Golden | 2014-04-27 | 2 | -30/+58 |
| | | | | | ANSI mode. Initial patches by Dmitry Jemerov & Vladimir Iofik | ||||
| * | #18243: Remove obsolete cautionary note from email mktime_tz docs. | R David Murray | 2014-04-26 | 1 | -7/+3 |
| | | |||||
| * | Issue #17145: Document array.array buffer interface limitations. | Stefan Krah | 2014-04-26 | 1 | -2/+4 |
| | | |||||
| * | Issue #18944: backport typo fix | Terry Jan Reedy | 2014-04-26 | 1 | -1/+1 |
| | | |||||
| * | Add NEWS entry for issue21349 | Tim Golden | 2014-04-26 | 1 | -0/+3 |
| | | |||||
| * | Issue21349 Passing a memoryview to _winreg.SetValueEx now correctly raises a ↵ | Tim Golden | 2014-04-26 | 3 | -4/+16 |
| | | | | | TypeError where it previously crashed the interpreter. Patch by Brian Kearns | ||||
| * | Issue #20434 Correct error handlin of _PyString_Resize and _PyBytes_Resize | Kristján Valur Jónsson | 2014-04-25 | 6 | -56/+32 |
| | | |||||
