summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | socketmodule.c: backport INVALID_SOCKET from Python 3.5 to simplify the codeVictor Stinner2014-07-261-14/+5
| |
* | Issue #19875: Fix random test_getsockaddrarg() failure.Charles-François Natali2014-07-261-9/+17
| |
* | Issue #21958: Define HAVE_ROUND when building with VS 2013 and above.Zachary Ware2014-07-252-0/+8
| | | | | | | | Patch by Zachary Turner.
* | Issue #21990: Cleanup unnecessary inner class definition in saxutils.Raymond Hettinger2014-07-252-5/+11
| |
* | Issue #22061: Add deprecation warnings in empty obsolete methods.Serhiy Storchaka2014-07-251-2/+9
| |
* | Issue #22061: remove call of useless function slated for removal.Terry Jan Reedy2014-07-251-1/+0
| |
* | Issue #22053: Make help work, after previous patch for this issue disabled itTerry Jan Reedy2014-07-251-18/+9
| | | | | | | | by removing global 'demo'. Refactor and remove duplicate code.
* | Issue #19884, readline: calling rl_variable_bind ("enable-meta-key", "off")Victor Stinner2014-07-241-1/+5
| | | | | | | | does crash on Mac OS X which uses libedit instead of readline.
* | Issue #16133: The asynchat.async_chat.handle_read() method now ignoresVictor Stinner2014-07-244-2/+48
| | | | | | | | | | socket.error() exceptions with blocking I/O errors: EAGAIN, EALREADY, EINPROGRESS, or EWOULDBLOCK. Initial patch written by Xavier de Gaye.
* | Issue #1730136: Fix comparison between a tk Font object and an object of aSerhiy Storchaka2014-07-243-1/+39
| | | | | | | | different type.
* | Issue #19884: readline: Disable the meta modifier key if stdout is not aVictor Stinner2014-07-243-7/+35
| | | | | | | | | | | | terminal to not write the ANSI sequence "\033[1034h" into stdout. This sequence is used on some terminal (ex: TERM=xterm-256color") to enable support of 8 bit characters.
* | Fix grammarAndrew Svetlov2014-07-241-1/+1
| |
* | Issue #22053: Cleanup turtledemo start and stop and fix debug shutdown warning.Terry Jan Reedy2014-07-231-15/+6
| |
* | Issue #19493: Fix two uses of ctypes.test.requires (it's not a decorator)Zachary Ware2014-07-232-2/+5
| | | | | | | | | | and skip test_win32.FunctionCallTestCase.test_SEH when Python was compiled in debug configuration or by a non-MSC compiler.
* | Merge headsSerhiy Storchaka2014-07-232-75/+93
|\ \
| * | Issue #21597: Turtledemo text pane can now be widened to view or copy completeTerry Jan Reedy2014-07-232-75/+93
| | | | | | | | | | | | | | | | | | lines or narrowed for small screens. Issie #19132: Turtledemo buttons no longer disappear when window is shrun. Patch mostly by Lita Cho (21597) using idea from patch by Jan Kanis (18132).
* | | Merge headsSerhiy Storchaka2014-07-233-17/+17
|\ \ \ | |/ /
| * | Fix minor typo in round docs. Reported by Scott Hinton on docs@.Zachary Ware2014-07-221-1/+1
| | |
| * | Closes #21665: Don't use OPTS=noxp or -DWINVER=0x0500 when compiling Tcl/TkZachary Ware2014-07-222-16/+16
| | | | | | | | | | | | | | | | | | | | | on the buildbots. 2.7 does still support Win2k, but using those options makes default ttk ugly while not using them doesn't seem to break Win2k.
* | | Issue #6167: Backported tests for Scrollbar.activate() and Scrollbar.set()Serhiy Storchaka2014-07-231-0/+18
|/ / | | | | | | from 6ae34a948cb4.
* | Fixed bugs in reprs of CookieJar and multiprocessing.dummy.Value.Serhiy Storchaka2014-07-222-3/+3
| |
* | Backout 308f3c1e36d3. This change (issue21044) does not need to be merged onSerhiy Storchaka2014-07-224-39/+6
| | | | | | | | 2.7, as the os.fdopen sets the name attribute to '<fdopen>' and not to the fd.
* | Issue #15759: "make suspicious", "make linkcheck" and "make doctest" in Doc/Serhiy Storchaka2014-07-222-10/+22
| | | | | | | | now display special message when and only when there are failures.
* | Issue #21976: Fix test_ssl to accept LibreSSL version strings.Antoine Pitrou2014-07-213-6/+17
| | | | | | | | Thanks to William Orr.
* | Issue #21868: Prevent turtle crash due to invalid undo buffer size.Raymond Hettinger2014-07-213-1/+5
| |
* | add #Benjamin Peterson2014-07-201-1/+1
| |
* | correct ref counting of default_action (closes #22017)Benjamin Peterson2014-07-202-0/+4
| |
* | args doesn't need to be a tuple (closes #17210)Benjamin Peterson2014-07-191-1/+1
| |
* | Issue #22006: Remove outdated thread module caveat. Thanks Dan O'Reilly for ↵Mark Dickinson2014-07-191-4/+0
| | | | | | | | the report.
* | add missing 'because' (closes #22008)Benjamin Peterson2014-07-181-1/+1
| | | | | | | | Patch from A Kaptur.
* | Issue #22004: Correct an argument name.Zachary Ware2014-07-181-1/+1
| |
* | Issue 21044: tarfile.open() now handles fileobj with an integer 'name'Serhiy Storchaka2014-07-164-6/+39
| | | | | | | | attribute. Based on patch by Martin Panter.
* | Add helpers for testing unicode disabled builds.Serhiy Storchaka2014-07-161-1/+6
| |
* | Fix a minor typo in the turtle docs. Found by Brandon Passmore on docs@.Zachary Ware2014-07-161-1/+1
| |
* | Issue #21982: Add minimal unittest for configDialog with 46% coverage.Terry Jan Reedy2014-07-152-3/+41
| |
* | Call PyErr_NoMemory() when PyMem_Malloc() fails.Serhiy Storchaka2014-07-141-1/+3
| |
* | Issue #17506: Synchronize Misc/NEWS and idlelib/NEWS.txt for 2.7.Terry Jan Reedy2014-07-142-19/+333
| |
* | Issue #18592: Method return signature changes made to SearchDialogBase forTerry Jan Reedy2014-07-134-19/+35
| | | | | | | | | | test purposes are now reflected in GrepDialog and ReplaceDialog. Docstrings are improved. Initial patch by Saimadhav Heblikar
* | Issue #21323: Fix CGIHTTPServer to again handle scripts in CGI subdirectories,Ned Deily2014-07-134-5/+23
| | | | | | | | broken by the fix for security issue #19435. Patch by Zach Byrne.
* | #21959: Adds 2.7.8 product code to Tools/msi/uuids.pySteve Dower2014-07-111-0/+1
| |
* | Issue #18592: Make unittest for SearchDialogBase work on all tk versions.Terry Jan Reedy2014-07-111-4/+4
| |
* | Idle News entries.Terry Jan Reedy2014-07-111-0/+7
| |
* | #21940: Add unittest for WidgetRedirector. Initial patch by Saimadhav Heblikar.Terry Jan Reedy2014-07-113-12/+145
| |
* | Issue #21940: add docstrings to idlelib.WidgetRedirector.Terry Jan Reedy2014-07-101-18/+59
| |
* | #21945: fix typo in Cookie module docstring.Ezio Melotti2014-07-091-1/+1
| |
* | Fix typo found by Scott Hinton on docs@Zachary Ware2014-07-071-1/+1
| |
* | Issue #21881: Just omit tests for platform-specific NaN representation in ↵Serhiy Storchaka2014-07-071-6/+2
| | | | | | | | test_tcl.
* | Issue #21881: Be more tolerant in test_tcl to not parsable by float() NaNSerhiy Storchaka2014-07-071-6/+6
| | | | | | | | representations (on mips and m68k platforms).
* | Issue #21923: Prevent AttributeError in distutils.sysconfig.customize_compilerNed Deily2014-07-063-1/+26
| | | | | | | | due to possible uninitialized _config_vars. Original patch by Alex Gaynor.
* | #20135: move FAQ about mutable default arguments to the programming FAQs page.Ezio Melotti2014-07-062-56/+56
| |