summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fix news headerv2.7.7Benjamin Peterson2014-05-311-2/+2
|
* bump to 2.7.7 finalBenjamin Peterson2014-05-316-8/+22
|
* openssl requires nasm (#21462)Benjamin Peterson2014-05-311-2/+2
|
* Issue #21462 PEP 466: upgrade OpenSSL in the Python 2.7 Windows buildsSteve Dower2014-05-302-2/+4
|
* include test data in the windows installer, so tests don't fail (closes #19866)Benjamin Peterson2014-05-181-0/+4
|
* Added tag v2.7.7rc1 for changeset e32e3a9f3902Benjamin Peterson2014-05-181-0/+1
|
* bump to 2.7.7rc1v2.7.7rc1Benjamin Peterson2014-05-186-12/+12
|
* update pydoc_topicsBenjamin Peterson2014-05-181-6/+6
|
* 'sunos' not 'solarisBenjamin Peterson2014-05-171-1/+1
|
* just skip this test on SolarisBenjamin Peterson2014-05-171-5/+5
|
* some platforms apparently don't care about fdopen'ing with a different modeBenjamin Peterson2014-05-171-1/+5
|
* support pep 3118 format strings for ctypes objects with nontrivial shapes ↵Benjamin Peterson2014-05-175-15/+75
| | | | | | (closes #10744) Patch from Matti Picus.
* reindent for consistencyBenjamin Peterson2014-05-171-3/+3
|
* Document changes to OS X installer configurations for 2.7.7.Ned Deily2014-05-175-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 Kumaran2014-05-173-18/+88
| | | | | | using http.client.HTTPConnection.set_tunnel(). Patch by Nikolaus Rath.
* Issue #18104: revise docstrings, remove obsolete comments.Terry Jan Reedy2014-05-161-29/+32
|
* Issue #21488: Oops, the patch for codecs.encode/decode doc was written byVictor Stinner2014-05-141-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 Stinner2014-05-142-6/+9
| | | | | | support. Patch written by Brad Aylsworth.
* #21347: use string not list in shell=True example.R David Murray2014-05-141-1/+1
| | | | Patch by Akira.
* Issue #21470: Do a better job seeding the random number generatorRaymond Hettinger2014-05-142-1/+6
| | | | to fully cover its state space.
* Issue 21469: Mitigate risk of false positives with robotparser.Raymond Hettinger2014-05-132-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.
* whitespaceTerry Jan Reedy2014-05-121-1/+0
|
* Issue #18104: Add idlelib/idle_test/htest.py with a few sample tests to beginTerry Jan Reedy2014-05-125-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 andBenjamin Peterson2014-05-111-1/+1
|
* this file now has utf-8 charsBenjamin Peterson2014-05-111-0/+2
|
* cast away warningsBenjamin Peterson2014-05-111-2/+2
|
* backport hmac.compare_digest to partially implement PEP 466 (closes #21306)Benjamin Peterson2014-05-115-1/+278
| | | | Backport from Alex Gaynor.
* remove confusing delete indexing (closes #21466)Benjamin Peterson2014-05-111-2/+0
|
* Issue #21476 Include idle icon files in Windows installerSteve Dower2014-05-111-0/+1
|
* Backport 4e9f1017355f from #3561.Brian Curtin2014-05-102-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 Pitrou2014-05-083-7/+17
| | | | | | advertised. Patch by Brian Kearns.
* - Issue #17752: Fix distutils tests when run from the installed location.doko@ubuntu.com2014-05-074-15/+17
|
* Add prompts to interactive example.Zachary Ware2014-05-061-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`` clauseZachary Ware2014-05-061-0/+14
| | | | overrides a ``return`` in the ``try`` suite.
* Issue 21375: Fix possible Py_ssizet overflow in heapq.Raymond Hettinger2014-05-031-8/+8
|
* Issue #18604: Consolidated checks for GUI availability.Zachary Ware2014-05-026-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 Golden2014-04-291-2/+3
| | | | real file object
* Issue #21321: itertools.islice() now releases the reference to the source ↵Antoine Pitrou2014-04-294-5/+25
| | | | | | iterator when the slice is exhausted. Patch by Anton Afanasyev.
* Closes #21055: Index (augmented) assignment symbols.Terry Jan Reedy2014-04-291-0/+13
|
* Closes 21048: Index 'as' in import and with statements.Terry Jan Reedy2014-04-292-1/+4
|
* Closes #21026: Augment site doc based on experiments. Patch by Carol Willing.Terry Jan Reedy2014-04-292-1/+6
|
* #21225: copy docstrings from base classesAndrew Kuchling2014-04-251-3/+4
|
* Issue #9291 Add ACKS & NEWSTim Golden2014-04-272-0/+5
|
* Issue #9291 Do not attempt to re-encode mimetype data read from registry in ↵Tim Golden2014-04-272-30/+58
| | | | ANSI mode. Initial patches by Dmitry Jemerov & Vladimir Iofik
* #18243: Remove obsolete cautionary note from email mktime_tz docs.R David Murray2014-04-261-7/+3
|
* Issue #17145: Document array.array buffer interface limitations.Stefan Krah2014-04-261-2/+4
|
* Issue #18944: backport typo fixTerry Jan Reedy2014-04-261-1/+1
|
* Add NEWS entry for issue21349Tim Golden2014-04-261-0/+3
|
* Issue21349 Passing a memoryview to _winreg.SetValueEx now correctly raises a ↵Tim Golden2014-04-263-4/+16
| | | | TypeError where it previously crashed the interpreter. Patch by Brian Kearns
* Issue #20434 Correct error handlin of _PyString_Resize and _PyBytes_ResizeKristján Valur Jónsson2014-04-256-56/+32
|