Commit Graph

38039 Commits

Author SHA1 Message Date
Serhiy Storchaka
ab824222d1 Issue #25011: rlcomplete now omits private and special attribute names unless
the prefix starts with underscores.
2015-09-27 13:43:50 +03:00
Serhiy Storchaka
8ace8e99b3 Issue #25209: rlcomplete now can add a space or a colon after completed keyword. 2015-09-27 13:26:03 +03:00
Victor Stinner
36b3fbb0ee Issue #25220: Fix Lib/test/autotest.py 2015-09-27 11:19:08 +02:00
Terry Jan Reedy
89171f2078 Merge with 3.5 2015-09-27 04:40:34 -04:00
Terry Jan Reedy
6a9cee1510 Merge with 3.4 2015-09-27 04:40:23 -04:00
Terry Jan Reedy
28670d1ffa Issue #25198: When using the Idle dov TOC menu, put the section title at the
top of the window, unless it is too near the bottom to do do.
2015-09-27 04:40:08 -04:00
Terry Jan Reedy
0103af397f Merge with 3.5 2015-09-26 20:04:23 -04:00
Terry Jan Reedy
34a8047672 Merge with 3.4 2015-09-26 20:04:09 -04:00
Terry Jan Reedy
d2134c71a1 Issue #24570: Idle: make calltip and completion boxes appear on Macs
affected by a tk regression.  Initial patch by Mark Roseman.
2015-09-26 20:03:57 -04:00
Terry Jan Reedy
9c2982a25c Merge with 3.5 2015-09-26 18:50:58 -04:00
Terry Jan Reedy
df1fe78acb Merge with 3.4 2015-09-26 18:50:44 -04:00
Terry Jan Reedy
00e4ce3a36 Issue #24988: Idle ScrolledList context menus (used in debugger)
now work on Mac Aqua.  Patch by Mark Roseman.
2015-09-26 18:50:26 -04:00
Victor Stinner
3844fe5ed8 Issue #25220: Move most regrtest.py code to libregrtest 2015-09-26 10:38:01 +02:00
Victor Stinner
98de5340d4 Issue #25220: Create Lib/test/libregrtest/
Start to split regrtest.py into smaller parts with the creation of
Lib/test/libregrtest/cmdline.py: code to handle the command line, especially
parsing command line arguments. This part of the code is tested by
test_regrtest.
2015-09-26 09:43:45 +02:00
Benjamin Peterson
00d4442979 merge 3.5 (#25131) 2015-09-25 22:44:55 -07:00
Benjamin Peterson
58b53953f8 make opening brace of container literals and comprehensions correspond to the line number and col offset of the AST node (closes #25131) 2015-09-25 22:44:43 -07:00
Terry Jan Reedy
9cd90ccaae Merge with 3.5 2015-09-25 22:23:33 -04:00
Terry Jan Reedy
58b07a605d Merge with 3.4 2015-09-25 22:23:19 -04:00
Terry Jan Reedy
3be2e54adc Issue #25173: Replace 'master' with 'parent' in tkinter.messagebox calls.
This associates the message box with the widget and is better for Mac OSX.
Patch by Mark Roseman.
2015-09-25 22:22:55 -04:00
Martin Panter
0931ba2259 Issue #25211: Merge test_long from 3.5 2015-09-26 00:07:54 +00:00
Martin Panter
429f28d1ae Issue #25211: Merge test_long from 3.4 into 3.5 2015-09-26 00:07:29 +00:00
Martin Panter
cbe16aefb8 Issue #25211: Eliminate lazy error message class by using subTest
Some of the calls to the Frm class were buggy anyway.
2015-09-25 23:50:47 +00:00
Brett Cannon
1dae0c68dd Issue #25186: Remove duplicated function from importlib._bootstrap_external 2015-09-25 13:05:13 -07:00
Terry Jan Reedy
b5bb6f3a59 Merge with 3.5 2015-09-25 00:49:44 -04:00
Terry Jan Reedy
3acda6e854 Merge with 3.4 2015-09-25 00:49:31 -04:00
Terry Jan Reedy
52736ddc9c Issue #25198: Idle doc viewer now uses user width and height setting.
The height is reduced by 3/4 to account for extra spacing between lines,
relative to an Idle editor, and extra tall header lines.
2015-09-25 00:49:18 -04:00
Terry Jan Reedy
6e5bf064a1 Merge with 3.5 2015-09-24 23:19:20 -04:00
Terry Jan Reedy
65b29696f4 Merge with 3.4 2015-09-24 23:19:09 -04:00
Terry Jan Reedy
ce021dbb25 Issue #25225: add revised .html. 2015-09-24 23:18:57 -04:00
Terry Jan Reedy
c62656d37a Merge with 3.5 2015-09-24 17:32:50 -04:00
Terry Jan Reedy
986f53181a Merge with 3.4 2015-09-24 17:32:38 -04:00
Terry Jan Reedy
974a271105 Issue #25198: In Idle doc viewer, fix indent of fixed-pitch <pre> text
by adding a new tag.  Patch by Mark Roseman. Also give <pre> text a very
light blueish-gray background similar to that used by Sphinx html.
2015-09-24 17:32:01 -04:00
Terry Jan Reedy
ac2d87a157 Merge with 3.5 2015-09-24 03:10:07 -04:00
Terry Jan Reedy
5901b00124 Merge with 3.4 2015-09-24 03:09:56 -04:00
Terry Jan Reedy
0053c47785 Issue 21995: Explain some differences between IDLE and console Python. 2015-09-24 03:09:43 -04:00
Terry Jan Reedy
e39b57b41a Merge with 3.5 2015-09-23 20:01:09 -04:00
Terry Jan Reedy
0389fccbd0 Merge with 3.4 2015-09-23 20:00:55 -04:00
Terry Jan Reedy
6e10ec5367 Issue 25224: Augment Idle doc feature list and no-subprocess section
to finish making current README.txt obsolete.
2015-09-23 20:00:33 -04:00
Victor Stinner
0cca00b67e Issue #25220: Backed out changeset eaf9a99b6bb8 2015-09-23 23:16:47 +02:00
Victor Stinner
7b92abf0e9 Issue #25220: Create Lib/test/libregrtest/
Start to split regrtest.py into smaller parts with the creation of
Lib/test/libregrtest/cmdline.py.
2015-09-23 23:04:18 +02:00
Eric V. Smith
b2080f6554 f-strings: More tests for empty expressions along with missing closing braces. 2015-09-23 10:24:43 -04:00
Eric V. Smith
548c4d3178 Added more f-string test for empty expressions. 2015-09-23 08:00:01 -04:00
Eric V. Smith
1d44c41b0c Move f-string compilation of the expression earlier, before the conversion character and format_spec are checked. This allows for error messages that more closely match what a user would expect. 2015-09-23 07:49:00 -04:00
Terry Jan Reedy
54afac325c Merge with 3.5 2015-09-23 03:52:50 -04:00
Terry Jan Reedy
30d0433451 Merge with 3.4 2015-09-23 03:52:36 -04:00
Terry Jan Reedy
968e285a8c Issue #25219: Update doc for Idle command line options.
Some were missing and notes were not correct.
2015-09-23 03:52:23 -04:00
Terry Jan Reedy
2e02348c7e Merge with 3.5 2015-09-23 03:45:49 -04:00
Terry Jan Reedy
e8509556c3 Merge with 3.4 2015-09-23 03:45:33 -04:00
Terry Jan Reedy
6f5cdfefa1 Idlelib.help: add 'b' prefix needed for bytes + bytes. 2015-09-23 03:45:13 -04:00
Terry Jan Reedy
39677a4088 Merge with 3.5 2015-09-22 23:00:07 -04:00