summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #27171: Merge typo fixes from 3.5Martin Panter2016-06-0230-51/+51
|\
| * Issue #27171: Fix typos in documentation, comments, and test function namesMartin Panter2016-06-0230-51/+51
| |
* | Issue #12243: Merge from 3.5Berker Peksag2016-06-021-3/+1
|\ \ | |/
| * Issue #12243: Remove redundant availability notes from getpass docsBerker Peksag2016-06-021-3/+1
| | | | | | | | Patch by Bryce Verdier.
* | Issue #27178: Fix markup in tutorialBerker Peksag2016-06-011-1/+1
| | | | | | | | Patch by Nathan Harold.
* | Merge from 3.5Berker Peksag2016-06-011-1/+1
|\ \ | |/
| * Fix link in programming FAQ.Berker Peksag2016-06-011-1/+1
| | | | | | | | The example actually uses the sort method of list object.
* | Issue #27174: Merge from 3.5Berker Peksag2016-06-011-1/+1
|\ \ | |/
| * Issue #27174: Update IPython URL in tutorialBerker Peksag2016-06-011-1/+1
| |
* | Merge from 3.5Berker Peksag2016-06-011-1/+1
|\ \ | |/
| * Fix typo in Python tutorialBerker Peksag2016-06-011-1/+1
| |
* | Issue #25570: Merge add_header() example from 3.5Martin Panter2016-06-011-1/+6
|\ \ | |/
| * Issue #25570: Add example of customizing User-Agent via add_header()Martin Panter2016-06-011-1/+6
| |
* | Merge with 3.5Zachary Ware2016-06-011-1/+1
|\ \ | |/
| * Fix typoZachary Ware2016-06-011-1/+1
| |
* | Issue # 24225: Update idlelib.README.txt with new file names and event handlers.Terry Jan Reedy2016-06-011-133/+135
| |
* | Issue #27156: Remove obsolete code not used by IDLE.Terry Jan Reedy2016-05-303-432/+0
| | | | | | | | | | | | | | help.txt, replaced by help.html, is out-of-date and should not be used. Its dedicated viewer has be replaced by the html viewer in help.py. 'import idlever; I = idlever.IDLE_VERSION' is the same as 'import sys; I = version[:version.index(' ')]'
* | Issue #27125: Remove duplicated words in exception messageMartin Panter2016-05-301-1/+1
| |
* | Issue #27125: Merge typo fixes from 3.5Martin Panter2016-05-3017-21/+20
|\ \ | |/
| * Issue #27125: Remove duplicated words from documentation and commentsMartin Panter2016-05-3017-21/+20
| |
* | Add items to MISC/NEWS and idlelib/NEWS.txt.Terry Jan Reedy2016-05-302-2/+85
|\ \ | |/
| * Add items to MISC/NEWS and idlelib/NEWS.txt.Terry Jan Reedy2016-05-302-0/+78
| |
* | [merge from 3.5] issue27043 - Explain the inspect.cleandoc behavior on ↵Senthil Kumaran2016-05-301-2/+6
|\ \ | |/ | | | | | | | | synopsis line and other lines. Patch contributed by Nathan Harold.
| * issue27043 - Explain the inspect.cleandoc behavior on synopsis line and ↵Senthil Kumaran2016-05-301-2/+6
| | | | | | | | | | | | other lines. Patch contributed by Nathan Harold.
* | Issue #27033: Removed unnecessary the bool calls.Serhiy Storchaka2016-05-291-4/+4
| |
* | Improved docs for issue27033. Based on comments by R. David Murray.Serhiy Storchaka2016-05-292-5/+13
| |
* | Merge headsTerry Jan Reedy2016-05-290-0/+0
|\ \
| * \ Null mergeTerry Jan Reedy2016-05-290-0/+0
| |\ \
* | \ \ Issue #27125: Merge typo fixes from 3.5Martin Panter2016-05-2913-15/+17
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| Also merge changes from Issue #27117; no actual code changes to 3.6.
| * | Issue #27125: Fix various errors like “will [be] inherited”Martin Panter2016-05-2913-15/+17
| |/
| * Issue #27117: Make ColorDelegator htest and turtledemo work with dark theme.Terry Jan Reedy2016-05-293-16/+31
| | | | | | | | Factor out code for configuring text widget colors to a new function.
* | Issue #27117: Make colorizer htest and turtledemo work with dark theme.Terry Jan Reedy2016-05-293-16/+31
| | | | | | | | Factor out code for configuring text widget colors to a new function.
* | Issue #27124: Merge binascii doc from 3.5Martin Panter2016-05-291-2/+2
|\ \ | |/
| * Issue #27124: Fix documentation of exception raised by a2b_hex()Martin Panter2016-05-291-2/+2
| |
* | merge 3.5Benjamin Peterson2016-05-280-0/+0
|\ \ | |/
| * merge headsBenjamin Peterson2016-05-281-0/+2
| |\
* | \ merge headsBenjamin Peterson2016-05-281-0/+2
|\ \ \
| * \ \ Fix issue27146 - add stdio.h include to posixmodule.c for ctermid().Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-05-281-0/+2
| |\ \ \ | | | |/ | | |/|
| | * | Fix issue27146 - add stdio.h include to posixmodule.c for ctermid().Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-05-281-0/+2
| | | |
* | | | merge headsBenjamin Peterson2016-05-2885-360/+378
|\ \ \ \ | |/ / /
| * | | Issue #24225: Within idlelib files, update idlelib module names.Terry Jan Reedy2016-05-2873-360/+378
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This follows the previous patch that changed idlelib file names. Class names that matched old module names are not changed. Change idlelib imports in turtledemo.__main__. Exception: config-extensions.def. Previously, extension section names, file names, and class names had to match. Changing section names would create cross-version conflicts in config-extensions.cfg (user customizations). Instead map old names to new file names at point of import in editor.EditorWindow.load_extension. Patch extensively tested with test_idle, idle_test.htest.py, a custom import-all test, running IDLE in a console to catch messages, and testing each menu item. Based on a patch by Al Sweigart.
| * | | Issue #24225: Rename many idlelib/*.py and idlelib/idle_test/test_*.py files.Terry Jan Reedy2016-05-2260-0/+0
| | | |
* | | | merge 3.5Benjamin Peterson2016-05-283-10/+3
|\ \ \ \ | |/ / / |/| | / | | |/ | |/|
| * | backout 3c9512d8ac0dBenjamin Peterson2016-05-283-11/+1
| |/
* | Issue #27147: Mention PEP 420 in the importlib docs.Eric Snow2016-05-282-0/+5
|\ \ | |/
| * Issue #27147: Mention PEP 420 in the importlib docs.Eric Snow2016-05-282-0/+5
| |
* | Issue #27138: Regenerate Python/importlib_external.h.Serhiy Storchaka2016-05-281-324/+323
|\ \ | |/
| * Issue #27138: Regenerate Python/importlib_external.h.Serhiy Storchaka2016-05-281-344/+343
| |
* | Merge heads (issue #25926).Serhiy Storchaka2016-05-280-0/+0
|\ \ | |/
| * Issue 25926: Clarify that the pure python equivalents are only approximate.Raymond Hettinger2016-05-282-19/+22
| |