Victor Stinner
0030cd52da
Issue #25227 : Cleanup unicode_encode_ucs1() error handler
...
* Change limit type from unsigned int to Py_UCS4, to use the same type than the
"ch" variable (an Unicode character).
* Reuse ch variable for _Py_ERROR_XMLCHARREFREPLACE
* Add some newlines for readability
2015-09-24 14:45:00 +02:00
Eric V. Smith
1e5fcc3dea
Fixed error creation if the problem is an empty expression in an f-string: use ast_error instead of PyErr_SetString.
2015-09-24 08:52:04 -04:00
Andrew Svetlov
038b61fbb5
Merge 3.5 -> default
2015-09-24 14:36:00 +03:00
Andrew Svetlov
1c99e529dd
Merge 3.4 -> 3.5
2015-09-24 14:35:16 +03:00
Andrew Svetlov
74edd3580e
Add Benjamin Hodgson to Misc/ACK
2015-09-24 14:34:07 +03:00
Andrew Svetlov
4919907774
Fix #25208 : Improve "Develop with asyncio" doc page.
...
Patch by Benjamin Hodgson.
2015-09-24 14:32:39 +03: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
Victor Stinner
63c8907498
Merge 3.5 (codecs, issue #24894 )
2015-09-24 09:04:44 +02:00
Victor Stinner
0ec69a6a41
Merge 3.4 (codecs, issue #24894 )
2015-09-24 09:04:26 +02:00
Victor Stinner
bfd9767e0f
Issue #24894 : Document the codec iso8859_11
...
Patch written by Prashant Tyagi.
2015-09-24 09:04:05 +02:00
Terry Jan Reedy
51c0f3e451
Merge with 3.5
2015-09-24 01:40:07 -04:00
Terry Jan Reedy
1749ce7542
Merge with 3.4
2015-09-24 01:39:48 -04:00
Terry Jan Reedy
8b5a981e02
Issue #22820 : Explain need for *print* when running file from Idle editor.
2015-09-24 01:39:30 -04:00
Raymond Hettinger
2b0d646b75
Replace an unpredictable branch with a simple addition.
2015-09-23 19:15:44 -07: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
Raymond Hettinger
3a1a8d0424
Eliminate unnecessary variables
2015-09-23 02:42:02 -07: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
Martin Panter
3766ee5162
Issue #12067 : Merge comparisons doc from 3.5
2015-09-23 05:41:52 +00:00
Martin Panter
e52c41a714
Issue #12067 : Merge comparisons doc from 3.4 into 3.5
2015-09-23 05:34:48 +00:00
Martin Panter
aa0da864b8
Issue #12067 : Rewrite Comparisons section in the language reference
...
Some of the details of comparing mixed types were incorrect or ambiguous.
NotImplemented is only relevant at a lower level than the Expressions
chapter. Added details of comparing range() objects, and default behaviour
and consistency suggestions for user-defined classes. Patch from Andy Maier.
2015-09-23 05:28:13 +00:00
Terry Jan Reedy
39677a4088
Merge with 3.5
2015-09-22 23:00:07 -04:00
Terry Jan Reedy
1ccf44c476
Merge with 3.4
2015-09-22 22:59:53 -04:00
Terry Jan Reedy
a0ae789fd4
Issue #16893 : Move idlelib.EditorWindow.HelpDialog deprecation warning
...
so it is not triggered on import. The problem is creation of a now-unused
instance "helpDialog = HelpDialog()", left for back compatibility.
So instead trigger the warning when that instance or another is used.
2015-09-22 22:59:40 -04:00
Martin Panter
f9cd8ff14a
Issue #25047 : Merge Element Tree encoding from 3.5
2015-09-23 01:49:24 +00:00
Martin Panter
982a08f8bb
Issue #25047 : Merge Element Tree encoding from 3.4 into 3.5
2015-09-23 01:43:08 +00:00
Steve Dower
ebbad80e85
Merge from 3.5
2015-09-22 18:21:13 -07:00
Steve Dower
5f62112db4
Issues #25112 : py.exe launcher is missing icons
2015-09-22 18:20:58 -07:00
Martin Panter
89f76d3f91
Issue #25047 : Respect case writing XML encoding declarations
...
This restores the ability to write encoding names in uppercase like "UTF-8",
which worked in Python 2.
2015-09-23 01:14:35 +00:00
Terry Jan Reedy
8ce85b5f57
Merge with 3.5
2015-09-22 21:13:53 -04:00
Terry Jan Reedy
452498a128
Merge with 3.4
2015-09-22 21:13:39 -04:00
Terry Jan Reedy
f94471c140
whitespace
2015-09-22 21:13:28 -04:00
Terry Jan Reedy
6f1f091e80
Merge with 3.5
2015-09-22 21:11:06 -04:00
Terry Jan Reedy
5e6201e8a9
Merge with 3.4
2015-09-22 21:10:49 -04:00
Terry Jan Reedy
3c7eccd0a6
Issue #24570 : Right-click for context menus now work on Mac Aqual also.
...
Patch by Mark Roseman.
2015-09-22 21:10:27 -04:00
Steve Dower
697c43d389
Merge from 3.5
2015-09-22 17:35:55 -07:00
Steve Dower
5b1640cd2b
Merge from 3.4
2015-09-22 17:35:42 -07:00