Python-checkins
Threads by month
- ----- 2025 -----
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
September 2016
- 4 participants
- 1267 discussions
cpython (3.5): Issue #27942: String constants now interned recursively in tuples and
by serhiy.storchaka Sept. 30, 2016
by serhiy.storchaka Sept. 30, 2016
Sept. 30, 2016
https://hg.python.org/cpython/rev/78bea78d9335
changeset: 104175:78bea78d9335
branch: 3.5
parent: 104168:b5705456d9da
user: Serhiy Storchaka <storchaka(a)gmail.com>
date: Fri Sep 30 10:07:26 2016 +0300
summary:
Issue #27942: String constants now interned recursively in tuples and frozensets.
files:
Lib/test/test_code.py | 40 +-
Misc/NEWS | 2 +
Objects/codeobject.c | 52 +-
Python/importlib.h | 131 +-
Python/importlib_external.h | 1603 +++++++++++-----------
5 files changed, 952 insertions(+), 876 deletions(-)
diff --git a/Lib/test/test_code.py b/Lib/test/test_code.py
--- a/Lib/test/test_code.py
+++ b/Lib/test/test_code.py
@@ -102,6 +102,7 @@
"""
+import sys
import unittest
import weakref
from test.support import run_doctest, run_unittest, cpython_only
@@ -134,6 +135,43 @@
self.assertEqual(co.co_name, "funcname")
self.assertEqual(co.co_firstlineno, 15)
+class CodeConstsTest(unittest.TestCase):
+
+ def find_const(self, consts, value):
+ for v in consts:
+ if v == value:
+ return v
+ self.assertIn(value, consts) # rises an exception
+ self.fail('Should be never reached')
+
+ def assertIsInterned(self, s):
+ if s is not sys.intern(s):
+ self.fail('String %r is not interned' % (s,))
+
+ @cpython_only
+ def test_interned_string(self):
+ co = compile('res = "str_value"', '?', 'exec')
+ v = self.find_const(co.co_consts, 'str_value')
+ self.assertIsInterned(v)
+
+ @cpython_only
+ def test_interned_string_in_tuple(self):
+ co = compile('res = ("str_value",)', '?', 'exec')
+ v = self.find_const(co.co_consts, ('str_value',))
+ self.assertIsInterned(v[0])
+
+ @cpython_only
+ def test_interned_string_in_frozenset(self):
+ co = compile('res = a in {"str_value"}', '?', 'exec')
+ v = self.find_const(co.co_consts, frozenset(('str_value',)))
+ self.assertIsInterned(tuple(v)[0])
+
+ @cpython_only
+ def test_interned_string_default(self):
+ def f(a='str_value'):
+ return a
+ self.assertIsInterned(f())
+
class CodeWeakRefTest(unittest.TestCase):
@@ -163,7 +201,7 @@
def test_main(verbose=None):
from test import test_code
run_doctest(test_code, verbose)
- run_unittest(CodeTest, CodeWeakRefTest)
+ run_unittest(CodeTest, CodeConstsTest, CodeWeakRefTest)
if __name__ == "__main__":
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@
Core and Builtins
-----------------
+- Issue #27942: String constants now interned recursively in tuples and frozensets.
+
- Issue #21578: Fixed misleading error message when ImportError called with
invalid keyword args.
diff --git a/Objects/codeobject.c b/Objects/codeobject.c
--- a/Objects/codeobject.c
+++ b/Objects/codeobject.c
@@ -46,6 +46,50 @@
}
}
+/* Intern selected string constants */
+static int
+intern_string_constants(PyObject *tuple)
+{
+ int modified = 0;
+ Py_ssize_t i;
+
+ for (i = PyTuple_GET_SIZE(tuple); --i >= 0; ) {
+ PyObject *v = PyTuple_GET_ITEM(tuple, i);
+ if (PyUnicode_CheckExact(v)) {
+ if (all_name_chars(v)) {
+ PyObject *w = v;
+ PyUnicode_InternInPlace(&v);
+ if (w != v) {
+ PyTuple_SET_ITEM(tuple, i, v);
+ modified = 1;
+ }
+ }
+ }
+ else if (PyTuple_CheckExact(v)) {
+ intern_string_constants(v);
+ }
+ else if (PyFrozenSet_CheckExact(v)) {
+ PyObject *tmp = PySequence_Tuple(v);
+ if (tmp == NULL) {
+ PyErr_Clear();
+ continue;
+ }
+ if (intern_string_constants(tmp)) {
+ v = PyFrozenSet_New(tmp);
+ if (v == NULL) {
+ PyErr_Clear();
+ }
+ else {
+ PyTuple_SET_ITEM(tuple, i, v);
+ modified = 1;
+ }
+ }
+ Py_DECREF(tmp);
+ }
+ }
+ return modified;
+}
+
PyCodeObject *
PyCode_New(int argcount, int kwonlyargcount,
@@ -84,13 +128,7 @@
intern_strings(varnames);
intern_strings(freevars);
intern_strings(cellvars);
- /* Intern selected string constants */
- for (i = PyTuple_GET_SIZE(consts); --i >= 0; ) {
- PyObject *v = PyTuple_GetItem(consts, i);
- if (!all_name_chars(v))
- continue;
- PyUnicode_InternInPlace(&PyTuple_GET_ITEM(consts, i));
- }
+ intern_string_constants(consts);
/* Create mapping between cells and arguments if needed. */
if (n_cellvars) {
Py_ssize_t total_args = argcount + kwonlyargcount +
diff --git a/Python/importlib.h b/Python/importlib.h
--- a/Python/importlib.h
+++ b/Python/importlib.h
[stripped]
diff --git a/Python/importlib_external.h b/Python/importlib_external.h
--- a/Python/importlib_external.h
+++ b/Python/importlib_external.h
@@ -1713,814 +1713,813 @@
45,110,97,109,101,44,32,112,97,114,101,110,116,45,112,97,
116,104,45,97,116,116,114,45,110,97,109,101,41,114,60,0,
0,0,114,32,0,0,0,114,8,0,0,0,114,37,0,0,
- 0,90,8,95,95,112,97,116,104,95,95,41,2,122,3,115,
- 121,115,122,4,112,97,116,104,41,2,114,232,0,0,0,114,
- 34,0,0,0,41,4,114,110,0,0,0,114,223,0,0,0,
- 218,3,100,111,116,90,2,109,101,114,4,0,0,0,114,4,
- 0,0,0,114,6,0,0,0,218,23,95,102,105,110,100,95,
- 112,97,114,101,110,116,95,112,97,116,104,95,110,97,109,101,
- 115,190,3,0,0,115,8,0,0,0,0,2,27,1,12,2,
- 4,3,122,38,95,78,97,109,101,115,112,97,99,101,80,97,
- 116,104,46,95,102,105,110,100,95,112,97,114,101,110,116,95,
- 112,97,116,104,95,110,97,109,101,115,99,1,0,0,0,0,
- 0,0,0,3,0,0,0,3,0,0,0,67,0,0,0,115,
- 38,0,0,0,124,0,0,106,0,0,131,0,0,92,2,0,
- 125,1,0,125,2,0,116,1,0,116,2,0,106,3,0,124,
- 1,0,25,124,2,0,131,2,0,83,41,1,78,41,4,114,
- 239,0,0,0,114,119,0,0,0,114,8,0,0,0,218,7,
- 109,111,100,117,108,101,115,41,3,114,110,0,0,0,90,18,
- 112,97,114,101,110,116,95,109,111,100,117,108,101,95,110,97,
- 109,101,90,14,112,97,116,104,95,97,116,116,114,95,110,97,
- 109,101,114,4,0,0,0,114,4,0,0,0,114,6,0,0,
- 0,114,234,0,0,0,200,3,0,0,115,4,0,0,0,0,
- 1,18,1,122,31,95,78,97,109,101,115,112,97,99,101,80,
- 97,116,104,46,95,103,101,116,95,112,97,114,101,110,116,95,
- 112,97,116,104,99,1,0,0,0,0,0,0,0,3,0,0,
- 0,3,0,0,0,67,0,0,0,115,118,0,0,0,116,0,
- 0,124,0,0,106,1,0,131,0,0,131,1,0,125,1,0,
- 124,1,0,124,0,0,106,2,0,107,3,0,114,111,0,124,
- 0,0,106,3,0,124,0,0,106,4,0,124,1,0,131,2,
- 0,125,2,0,124,2,0,100,0,0,107,9,0,114,102,0,
- 124,2,0,106,5,0,100,0,0,107,8,0,114,102,0,124,
- 2,0,106,6,0,114,102,0,124,2,0,106,6,0,124,0,
- 0,95,7,0,124,1,0,124,0,0,95,2,0,124,0,0,
- 106,7,0,83,41,1,78,41,8,114,95,0,0,0,114,234,
- 0,0,0,114,235,0,0,0,114,236,0,0,0,114,232,0,
- 0,0,114,129,0,0,0,114,158,0,0,0,114,233,0,0,
- 0,41,3,114,110,0,0,0,90,11,112,97,114,101,110,116,
- 95,112,97,116,104,114,166,0,0,0,114,4,0,0,0,114,
- 4,0,0,0,114,6,0,0,0,218,12,95,114,101,99,97,
- 108,99,117,108,97,116,101,204,3,0,0,115,16,0,0,0,
- 0,2,18,1,15,1,21,3,27,1,9,1,12,1,9,1,
- 122,27,95,78,97,109,101,115,112,97,99,101,80,97,116,104,
- 46,95,114,101,99,97,108,99,117,108,97,116,101,99,1,0,
- 0,0,0,0,0,0,1,0,0,0,2,0,0,0,67,0,
- 0,0,115,16,0,0,0,116,0,0,124,0,0,106,1,0,
- 131,0,0,131,1,0,83,41,1,78,41,2,218,4,105,116,
- 101,114,114,241,0,0,0,41,1,114,110,0,0,0,114,4,
- 0,0,0,114,4,0,0,0,114,6,0,0,0,218,8,95,
- 95,105,116,101,114,95,95,217,3,0,0,115,2,0,0,0,
- 0,1,122,23,95,78,97,109,101,115,112,97,99,101,80,97,
- 116,104,46,95,95,105,116,101,114,95,95,99,1,0,0,0,
- 0,0,0,0,1,0,0,0,2,0,0,0,67,0,0,0,
- 115,16,0,0,0,116,0,0,124,0,0,106,1,0,131,0,
- 0,131,1,0,83,41,1,78,41,2,114,33,0,0,0,114,
- 241,0,0,0,41,1,114,110,0,0,0,114,4,0,0,0,
- 114,4,0,0,0,114,6,0,0,0,218,7,95,95,108,101,
- 110,95,95,220,3,0,0,115,2,0,0,0,0,1,122,22,
- 95,78,97,109,101,115,112,97,99,101,80,97,116,104,46,95,
- 95,108,101,110,95,95,99,1,0,0,0,0,0,0,0,1,
- 0,0,0,2,0,0,0,67,0,0,0,115,16,0,0,0,
- 100,1,0,106,0,0,124,0,0,106,1,0,131,1,0,83,
- 41,2,78,122,20,95,78,97,109,101,115,112,97,99,101,80,
- 97,116,104,40,123,33,114,125,41,41,2,114,49,0,0,0,
- 114,233,0,0,0,41,1,114,110,0,0,0,114,4,0,0,
- 0,114,4,0,0,0,114,6,0,0,0,218,8,95,95,114,
- 101,112,114,95,95,223,3,0,0,115,2,0,0,0,0,1,
- 122,23,95,78,97,109,101,115,112,97,99,101,80,97,116,104,
- 46,95,95,114,101,112,114,95,95,99,2,0,0,0,0,0,
- 0,0,2,0,0,0,2,0,0,0,67,0,0,0,115,16,
- 0,0,0,124,1,0,124,0,0,106,0,0,131,0,0,107,
- 6,0,83,41,1,78,41,1,114,241,0,0,0,41,2,114,
- 110,0,0,0,218,4,105,116,101,109,114,4,0,0,0,114,
- 4,0,0,0,114,6,0,0,0,218,12,95,95,99,111,110,
- 116,97,105,110,115,95,95,226,3,0,0,115,2,0,0,0,
- 0,1,122,27,95,78,97,109,101,115,112,97,99,101,80,97,
- 116,104,46,95,95,99,111,110,116,97,105,110,115,95,95,99,
- 2,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,
- 67,0,0,0,115,20,0,0,0,124,0,0,106,0,0,106,
- 1,0,124,1,0,131,1,0,1,100,0,0,83,41,1,78,
- 41,2,114,233,0,0,0,114,165,0,0,0,41,2,114,110,
- 0,0,0,114,246,0,0,0,114,4,0,0,0,114,4,0,
- 0,0,114,6,0,0,0,114,165,0,0,0,229,3,0,0,
- 115,2,0,0,0,0,1,122,21,95,78,97,109,101,115,112,
- 97,99,101,80,97,116,104,46,97,112,112,101,110,100,78,41,
- 13,114,114,0,0,0,114,113,0,0,0,114,115,0,0,0,
- 114,116,0,0,0,114,186,0,0,0,114,239,0,0,0,114,
- 234,0,0,0,114,241,0,0,0,114,243,0,0,0,114,244,
- 0,0,0,114,245,0,0,0,114,247,0,0,0,114,165,0,
- 0,0,114,4,0,0,0,114,4,0,0,0,114,4,0,0,
- 0,114,6,0,0,0,114,231,0,0,0,177,3,0,0,115,
- 20,0,0,0,12,5,6,2,12,6,12,10,12,4,12,13,
- 12,3,12,3,12,3,12,3,114,231,0,0,0,99,0,0,
- 0,0,0,0,0,0,0,0,0,0,3,0,0,0,64,0,
- 0,0,115,118,0,0,0,101,0,0,90,1,0,100,0,0,
- 90,2,0,100,1,0,100,2,0,132,0,0,90,3,0,101,
- 4,0,100,3,0,100,4,0,132,0,0,131,1,0,90,5,
- 0,100,5,0,100,6,0,132,0,0,90,6,0,100,7,0,
- 100,8,0,132,0,0,90,7,0,100,9,0,100,10,0,132,
- 0,0,90,8,0,100,11,0,100,12,0,132,0,0,90,9,
- 0,100,13,0,100,14,0,132,0,0,90,10,0,100,15,0,
- 100,16,0,132,0,0,90,11,0,100,17,0,83,41,18,218,
- 16,95,78,97,109,101,115,112,97,99,101,76,111,97,100,101,
- 114,99,4,0,0,0,0,0,0,0,4,0,0,0,4,0,
- 0,0,67,0,0,0,115,25,0,0,0,116,0,0,124,1,
- 0,124,2,0,124,3,0,131,3,0,124,0,0,95,1,0,
- 100,0,0,83,41,1,78,41,2,114,231,0,0,0,114,233,
- 0,0,0,41,4,114,110,0,0,0,114,108,0,0,0,114,
- 37,0,0,0,114,237,0,0,0,114,4,0,0,0,114,4,
- 0,0,0,114,6,0,0,0,114,186,0,0,0,235,3,0,
- 0,115,2,0,0,0,0,1,122,25,95,78,97,109,101,115,
- 112,97,99,101,76,111,97,100,101,114,46,95,95,105,110,105,
- 116,95,95,99,2,0,0,0,0,0,0,0,2,0,0,0,
- 2,0,0,0,67,0,0,0,115,16,0,0,0,100,1,0,
- 106,0,0,124,1,0,106,1,0,131,1,0,83,41,2,122,
- 115,82,101,116,117,114,110,32,114,101,112,114,32,102,111,114,
- 32,116,104,101,32,109,111,100,117,108,101,46,10,10,32,32,
- 32,32,32,32,32,32,84,104,101,32,109,101,116,104,111,100,
- 32,105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,
- 32,84,104,101,32,105,109,112,111,114,116,32,109,97,99,104,
- 105,110,101,114,121,32,100,111,101,115,32,116,104,101,32,106,
- 111,98,32,105,116,115,101,108,102,46,10,10,32,32,32,32,
- 32,32,32,32,122,25,60,109,111,100,117,108,101,32,123,33,
- 114,125,32,40,110,97,109,101,115,112,97,99,101,41,62,41,
- 2,114,49,0,0,0,114,114,0,0,0,41,2,114,172,0,
- 0,0,114,191,0,0,0,114,4,0,0,0,114,4,0,0,
- 0,114,6,0,0,0,218,11,109,111,100,117,108,101,95,114,
- 101,112,114,238,3,0,0,115,2,0,0,0,0,7,122,28,
+ 0,90,8,95,95,112,97,116,104,95,95,41,2,114,8,0,
+ 0,0,114,37,0,0,0,41,2,114,232,0,0,0,114,34,
+ 0,0,0,41,4,114,110,0,0,0,114,223,0,0,0,218,
+ 3,100,111,116,90,2,109,101,114,4,0,0,0,114,4,0,
+ 0,0,114,6,0,0,0,218,23,95,102,105,110,100,95,112,
+ 97,114,101,110,116,95,112,97,116,104,95,110,97,109,101,115,
+ 190,3,0,0,115,8,0,0,0,0,2,27,1,12,2,4,
+ 3,122,38,95,78,97,109,101,115,112,97,99,101,80,97,116,
+ 104,46,95,102,105,110,100,95,112,97,114,101,110,116,95,112,
+ 97,116,104,95,110,97,109,101,115,99,1,0,0,0,0,0,
+ 0,0,3,0,0,0,3,0,0,0,67,0,0,0,115,38,
+ 0,0,0,124,0,0,106,0,0,131,0,0,92,2,0,125,
+ 1,0,125,2,0,116,1,0,116,2,0,106,3,0,124,1,
+ 0,25,124,2,0,131,2,0,83,41,1,78,41,4,114,239,
+ 0,0,0,114,119,0,0,0,114,8,0,0,0,218,7,109,
+ 111,100,117,108,101,115,41,3,114,110,0,0,0,90,18,112,
+ 97,114,101,110,116,95,109,111,100,117,108,101,95,110,97,109,
+ 101,90,14,112,97,116,104,95,97,116,116,114,95,110,97,109,
+ 101,114,4,0,0,0,114,4,0,0,0,114,6,0,0,0,
+ 114,234,0,0,0,200,3,0,0,115,4,0,0,0,0,1,
+ 18,1,122,31,95,78,97,109,101,115,112,97,99,101,80,97,
+ 116,104,46,95,103,101,116,95,112,97,114,101,110,116,95,112,
+ 97,116,104,99,1,0,0,0,0,0,0,0,3,0,0,0,
+ 3,0,0,0,67,0,0,0,115,118,0,0,0,116,0,0,
+ 124,0,0,106,1,0,131,0,0,131,1,0,125,1,0,124,
+ 1,0,124,0,0,106,2,0,107,3,0,114,111,0,124,0,
+ 0,106,3,0,124,0,0,106,4,0,124,1,0,131,2,0,
+ 125,2,0,124,2,0,100,0,0,107,9,0,114,102,0,124,
+ 2,0,106,5,0,100,0,0,107,8,0,114,102,0,124,2,
+ 0,106,6,0,114,102,0,124,2,0,106,6,0,124,0,0,
+ 95,7,0,124,1,0,124,0,0,95,2,0,124,0,0,106,
+ 7,0,83,41,1,78,41,8,114,95,0,0,0,114,234,0,
+ 0,0,114,235,0,0,0,114,236,0,0,0,114,232,0,0,
+ 0,114,129,0,0,0,114,158,0,0,0,114,233,0,0,0,
+ 41,3,114,110,0,0,0,90,11,112,97,114,101,110,116,95,
+ 112,97,116,104,114,166,0,0,0,114,4,0,0,0,114,4,
+ 0,0,0,114,6,0,0,0,218,12,95,114,101,99,97,108,
+ 99,117,108,97,116,101,204,3,0,0,115,16,0,0,0,0,
+ 2,18,1,15,1,21,3,27,1,9,1,12,1,9,1,122,
+ 27,95,78,97,109,101,115,112,97,99,101,80,97,116,104,46,
+ 95,114,101,99,97,108,99,117,108,97,116,101,99,1,0,0,
+ 0,0,0,0,0,1,0,0,0,2,0,0,0,67,0,0,
+ 0,115,16,0,0,0,116,0,0,124,0,0,106,1,0,131,
+ 0,0,131,1,0,83,41,1,78,41,2,218,4,105,116,101,
+ 114,114,241,0,0,0,41,1,114,110,0,0,0,114,4,0,
+ 0,0,114,4,0,0,0,114,6,0,0,0,218,8,95,95,
+ 105,116,101,114,95,95,217,3,0,0,115,2,0,0,0,0,
+ 1,122,23,95,78,97,109,101,115,112,97,99,101,80,97,116,
+ 104,46,95,95,105,116,101,114,95,95,99,1,0,0,0,0,
+ 0,0,0,1,0,0,0,2,0,0,0,67,0,0,0,115,
+ 16,0,0,0,116,0,0,124,0,0,106,1,0,131,0,0,
+ 131,1,0,83,41,1,78,41,2,114,33,0,0,0,114,241,
+ 0,0,0,41,1,114,110,0,0,0,114,4,0,0,0,114,
+ 4,0,0,0,114,6,0,0,0,218,7,95,95,108,101,110,
+ 95,95,220,3,0,0,115,2,0,0,0,0,1,122,22,95,
+ 78,97,109,101,115,112,97,99,101,80,97,116,104,46,95,95,
+ 108,101,110,95,95,99,1,0,0,0,0,0,0,0,1,0,
+ 0,0,2,0,0,0,67,0,0,0,115,16,0,0,0,100,
+ 1,0,106,0,0,124,0,0,106,1,0,131,1,0,83,41,
+ 2,78,122,20,95,78,97,109,101,115,112,97,99,101,80,97,
+ 116,104,40,123,33,114,125,41,41,2,114,49,0,0,0,114,
+ 233,0,0,0,41,1,114,110,0,0,0,114,4,0,0,0,
+ 114,4,0,0,0,114,6,0,0,0,218,8,95,95,114,101,
+ 112,114,95,95,223,3,0,0,115,2,0,0,0,0,1,122,
+ 23,95,78,97,109,101,115,112,97,99,101,80,97,116,104,46,
+ 95,95,114,101,112,114,95,95,99,2,0,0,0,0,0,0,
+ 0,2,0,0,0,2,0,0,0,67,0,0,0,115,16,0,
+ 0,0,124,1,0,124,0,0,106,0,0,131,0,0,107,6,
+ 0,83,41,1,78,41,1,114,241,0,0,0,41,2,114,110,
+ 0,0,0,218,4,105,116,101,109,114,4,0,0,0,114,4,
+ 0,0,0,114,6,0,0,0,218,12,95,95,99,111,110,116,
+ 97,105,110,115,95,95,226,3,0,0,115,2,0,0,0,0,
+ 1,122,27,95,78,97,109,101,115,112,97,99,101,80,97,116,
+ 104,46,95,95,99,111,110,116,97,105,110,115,95,95,99,2,
+ 0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,67,
+ 0,0,0,115,20,0,0,0,124,0,0,106,0,0,106,1,
+ 0,124,1,0,131,1,0,1,100,0,0,83,41,1,78,41,
+ 2,114,233,0,0,0,114,165,0,0,0,41,2,114,110,0,
+ 0,0,114,246,0,0,0,114,4,0,0,0,114,4,0,0,
+ 0,114,6,0,0,0,114,165,0,0,0,229,3,0,0,115,
+ 2,0,0,0,0,1,122,21,95,78,97,109,101,115,112,97,
+ 99,101,80,97,116,104,46,97,112,112,101,110,100,78,41,13,
+ 114,114,0,0,0,114,113,0,0,0,114,115,0,0,0,114,
+ 116,0,0,0,114,186,0,0,0,114,239,0,0,0,114,234,
+ 0,0,0,114,241,0,0,0,114,243,0,0,0,114,244,0,
+ 0,0,114,245,0,0,0,114,247,0,0,0,114,165,0,0,
+ 0,114,4,0,0,0,114,4,0,0,0,114,4,0,0,0,
+ 114,6,0,0,0,114,231,0,0,0,177,3,0,0,115,20,
+ 0,0,0,12,5,6,2,12,6,12,10,12,4,12,13,12,
+ 3,12,3,12,3,12,3,114,231,0,0,0,99,0,0,0,
+ 0,0,0,0,0,0,0,0,0,3,0,0,0,64,0,0,
+ 0,115,118,0,0,0,101,0,0,90,1,0,100,0,0,90,
+ 2,0,100,1,0,100,2,0,132,0,0,90,3,0,101,4,
+ 0,100,3,0,100,4,0,132,0,0,131,1,0,90,5,0,
+ 100,5,0,100,6,0,132,0,0,90,6,0,100,7,0,100,
+ 8,0,132,0,0,90,7,0,100,9,0,100,10,0,132,0,
+ 0,90,8,0,100,11,0,100,12,0,132,0,0,90,9,0,
+ 100,13,0,100,14,0,132,0,0,90,10,0,100,15,0,100,
+ 16,0,132,0,0,90,11,0,100,17,0,83,41,18,218,16,
95,78,97,109,101,115,112,97,99,101,76,111,97,100,101,114,
- 46,109,111,100,117,108,101,95,114,101,112,114,99,2,0,0,
- 0,0,0,0,0,2,0,0,0,1,0,0,0,67,0,0,
- 0,115,4,0,0,0,100,1,0,83,41,2,78,84,114,4,
- 0,0,0,41,2,114,110,0,0,0,114,128,0,0,0,114,
- 4,0,0,0,114,4,0,0,0,114,6,0,0,0,114,161,
- 0,0,0,247,3,0,0,115,2,0,0,0,0,1,122,27,
- 95,78,97,109,101,115,112,97,99,101,76,111,97,100,101,114,
- 46,105,115,95,112,97,99,107,97,103,101,99,2,0,0,0,
+ 99,4,0,0,0,0,0,0,0,4,0,0,0,4,0,0,
+ 0,67,0,0,0,115,25,0,0,0,116,0,0,124,1,0,
+ 124,2,0,124,3,0,131,3,0,124,0,0,95,1,0,100,
+ 0,0,83,41,1,78,41,2,114,231,0,0,0,114,233,0,
+ 0,0,41,4,114,110,0,0,0,114,108,0,0,0,114,37,
+ 0,0,0,114,237,0,0,0,114,4,0,0,0,114,4,0,
+ 0,0,114,6,0,0,0,114,186,0,0,0,235,3,0,0,
+ 115,2,0,0,0,0,1,122,25,95,78,97,109,101,115,112,
+ 97,99,101,76,111,97,100,101,114,46,95,95,105,110,105,116,
+ 95,95,99,2,0,0,0,0,0,0,0,2,0,0,0,2,
+ 0,0,0,67,0,0,0,115,16,0,0,0,100,1,0,106,
+ 0,0,124,1,0,106,1,0,131,1,0,83,41,2,122,115,
+ 82,101,116,117,114,110,32,114,101,112,114,32,102,111,114,32,
+ 116,104,101,32,109,111,100,117,108,101,46,10,10,32,32,32,
+ 32,32,32,32,32,84,104,101,32,109,101,116,104,111,100,32,
+ 105,115,32,100,101,112,114,101,99,97,116,101,100,46,32,32,
+ 84,104,101,32,105,109,112,111,114,116,32,109,97,99,104,105,
+ 110,101,114,121,32,100,111,101,115,32,116,104,101,32,106,111,
+ 98,32,105,116,115,101,108,102,46,10,10,32,32,32,32,32,
+ 32,32,32,122,25,60,109,111,100,117,108,101,32,123,33,114,
+ 125,32,40,110,97,109,101,115,112,97,99,101,41,62,41,2,
+ 114,49,0,0,0,114,114,0,0,0,41,2,114,172,0,0,
+ 0,114,191,0,0,0,114,4,0,0,0,114,4,0,0,0,
+ 114,6,0,0,0,218,11,109,111,100,117,108,101,95,114,101,
+ 112,114,238,3,0,0,115,2,0,0,0,0,7,122,28,95,
+ 78,97,109,101,115,112,97,99,101,76,111,97,100,101,114,46,
+ 109,111,100,117,108,101,95,114,101,112,114,99,2,0,0,0,
0,0,0,0,2,0,0,0,1,0,0,0,67,0,0,0,
- 115,4,0,0,0,100,1,0,83,41,2,78,114,32,0,0,
- 0,114,4,0,0,0,41,2,114,110,0,0,0,114,128,0,
+ 115,4,0,0,0,100,1,0,83,41,2,78,84,114,4,0,
+ 0,0,41,2,114,110,0,0,0,114,128,0,0,0,114,4,
+ 0,0,0,114,4,0,0,0,114,6,0,0,0,114,161,0,
+ 0,0,247,3,0,0,115,2,0,0,0,0,1,122,27,95,
+ 78,97,109,101,115,112,97,99,101,76,111,97,100,101,114,46,
+ 105,115,95,112,97,99,107,97,103,101,99,2,0,0,0,0,
+ 0,0,0,2,0,0,0,1,0,0,0,67,0,0,0,115,
+ 4,0,0,0,100,1,0,83,41,2,78,114,32,0,0,0,
+ 114,4,0,0,0,41,2,114,110,0,0,0,114,128,0,0,
+ 0,114,4,0,0,0,114,4,0,0,0,114,6,0,0,0,
+ 114,203,0,0,0,250,3,0,0,115,2,0,0,0,0,1,
+ 122,27,95,78,97,109,101,115,112,97,99,101,76,111,97,100,
+ 101,114,46,103,101,116,95,115,111,117,114,99,101,99,2,0,
+ 0,0,0,0,0,0,2,0,0,0,6,0,0,0,67,0,
+ 0,0,115,22,0,0,0,116,0,0,100,1,0,100,2,0,
+ 100,3,0,100,4,0,100,5,0,131,3,1,83,41,6,78,
+ 114,32,0,0,0,122,8,60,115,116,114,105,110,103,62,114,
+ 190,0,0,0,114,205,0,0,0,84,41,1,114,206,0,0,
+ 0,41,2,114,110,0,0,0,114,128,0,0,0,114,4,0,
+ 0,0,114,4,0,0,0,114,6,0,0,0,114,188,0,0,
+ 0,253,3,0,0,115,2,0,0,0,0,1,122,25,95,78,
+ 97,109,101,115,112,97,99,101,76,111,97,100,101,114,46,103,
+ 101,116,95,99,111,100,101,99,2,0,0,0,0,0,0,0,
+ 2,0,0,0,1,0,0,0,67,0,0,0,115,4,0,0,
+ 0,100,1,0,83,41,2,122,42,85,115,101,32,100,101,102,
+ 97,117,108,116,32,115,101,109,97,110,116,105,99,115,32,102,
+ 111,114,32,109,111,100,117,108,101,32,99,114,101,97,116,105,
+ 111,110,46,78,114,4,0,0,0,41,2,114,110,0,0,0,
+ 114,166,0,0,0,114,4,0,0,0,114,4,0,0,0,114,
+ 6,0,0,0,114,187,0,0,0,0,4,0,0,115,0,0,
+ 0,0,122,30,95,78,97,109,101,115,112,97,99,101,76,111,
+ 97,100,101,114,46,99,114,101,97,116,101,95,109,111,100,117,
+ 108,101,99,2,0,0,0,0,0,0,0,2,0,0,0,1,
+ 0,0,0,67,0,0,0,115,4,0,0,0,100,0,0,83,
+ 41,1,78,114,4,0,0,0,41,2,114,110,0,0,0,114,
+ 191,0,0,0,114,4,0,0,0,114,4,0,0,0,114,6,
+ 0,0,0,114,192,0,0,0,3,4,0,0,115,2,0,0,
+ 0,0,1,122,28,95,78,97,109,101,115,112,97,99,101,76,
+ 111,97,100,101,114,46,101,120,101,99,95,109,111,100,117,108,
+ 101,99,2,0,0,0,0,0,0,0,2,0,0,0,3,0,
+ 0,0,67,0,0,0,115,32,0,0,0,116,0,0,100,1,
+ 0,124,0,0,106,1,0,131,2,0,1,116,2,0,106,3,
+ 0,124,0,0,124,1,0,131,2,0,83,41,2,122,98,76,
+ 111,97,100,32,97,32,110,97,109,101,115,112,97,99,101,32,
+ 109,111,100,117,108,101,46,10,10,32,32,32,32,32,32,32,
+ 32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,32,
+ 100,101,112,114,101,99,97,116,101,100,46,32,32,85,115,101,
+ 32,101,120,101,99,95,109,111,100,117,108,101,40,41,32,105,
+ 110,115,116,101,97,100,46,10,10,32,32,32,32,32,32,32,
+ 32,122,38,110,97,109,101,115,112,97,99,101,32,109,111,100,
+ 117,108,101,32,108,111,97,100,101,100,32,119,105,116,104,32,
+ 112,97,116,104,32,123,33,114,125,41,4,114,107,0,0,0,
+ 114,233,0,0,0,114,123,0,0,0,114,193,0,0,0,41,
+ 2,114,110,0,0,0,114,128,0,0,0,114,4,0,0,0,
+ 114,4,0,0,0,114,6,0,0,0,114,194,0,0,0,6,
+ 4,0,0,115,4,0,0,0,0,7,16,1,122,28,95,78,
+ 97,109,101,115,112,97,99,101,76,111,97,100,101,114,46,108,
+ 111,97,100,95,109,111,100,117,108,101,78,41,12,114,114,0,
+ 0,0,114,113,0,0,0,114,115,0,0,0,114,186,0,0,
+ 0,114,184,0,0,0,114,249,0,0,0,114,161,0,0,0,
+ 114,203,0,0,0,114,188,0,0,0,114,187,0,0,0,114,
+ 192,0,0,0,114,194,0,0,0,114,4,0,0,0,114,4,
+ 0,0,0,114,4,0,0,0,114,6,0,0,0,114,248,0,
+ 0,0,234,3,0,0,115,16,0,0,0,12,1,12,3,18,
+ 9,12,3,12,3,12,3,12,3,12,3,114,248,0,0,0,
+ 99,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,
+ 0,64,0,0,0,115,160,0,0,0,101,0,0,90,1,0,
+ 100,0,0,90,2,0,100,1,0,90,3,0,101,4,0,100,
+ 2,0,100,3,0,132,0,0,131,1,0,90,5,0,101,4,
+ 0,100,4,0,100,5,0,132,0,0,131,1,0,90,6,0,
+ 101,4,0,100,6,0,100,7,0,132,0,0,131,1,0,90,
+ 7,0,101,4,0,100,8,0,100,9,0,132,0,0,131,1,
+ 0,90,8,0,101,4,0,100,10,0,100,11,0,100,12,0,
+ 132,1,0,131,1,0,90,9,0,101,4,0,100,10,0,100,
+ 10,0,100,13,0,100,14,0,132,2,0,131,1,0,90,10,
+ 0,101,4,0,100,10,0,100,15,0,100,16,0,132,1,0,
+ 131,1,0,90,11,0,100,10,0,83,41,17,218,10,80,97,
+ 116,104,70,105,110,100,101,114,122,62,77,101,116,97,32,112,
+ 97,116,104,32,102,105,110,100,101,114,32,102,111,114,32,115,
+ 121,115,46,112,97,116,104,32,97,110,100,32,112,97,99,107,
+ 97,103,101,32,95,95,112,97,116,104,95,95,32,97,116,116,
+ 114,105,98,117,116,101,115,46,99,1,0,0,0,0,0,0,
+ 0,2,0,0,0,4,0,0,0,67,0,0,0,115,55,0,
+ 0,0,120,48,0,116,0,0,106,1,0,106,2,0,131,0,
+ 0,68,93,31,0,125,1,0,116,3,0,124,1,0,100,1,
+ 0,131,2,0,114,16,0,124,1,0,106,4,0,131,0,0,
+ 1,113,16,0,87,100,2,0,83,41,3,122,125,67,97,108,
+ 108,32,116,104,101,32,105,110,118,97,108,105,100,97,116,101,
+ 95,99,97,99,104,101,115,40,41,32,109,101,116,104,111,100,
+ 32,111,110,32,97,108,108,32,112,97,116,104,32,101,110,116,
+ 114,121,32,102,105,110,100,101,114,115,10,32,32,32,32,32,
+ 32,32,32,115,116,111,114,101,100,32,105,110,32,115,121,115,
+ 46,112,97,116,104,95,105,109,112,111,114,116,101,114,95,99,
+ 97,99,104,101,115,32,40,119,104,101,114,101,32,105,109,112,
+ 108,101,109,101,110,116,101,100,41,46,218,17,105,110,118,97,
+ 108,105,100,97,116,101,95,99,97,99,104,101,115,78,41,5,
+ 114,8,0,0,0,218,19,112,97,116,104,95,105,109,112,111,
+ 114,116,101,114,95,99,97,99,104,101,218,6,118,97,108,117,
+ 101,115,114,117,0,0,0,114,251,0,0,0,41,2,114,172,
+ 0,0,0,218,6,102,105,110,100,101,114,114,4,0,0,0,
+ 114,4,0,0,0,114,6,0,0,0,114,251,0,0,0,23,
+ 4,0,0,115,6,0,0,0,0,4,22,1,15,1,122,28,
+ 80,97,116,104,70,105,110,100,101,114,46,105,110,118,97,108,
+ 105,100,97,116,101,95,99,97,99,104,101,115,99,2,0,0,
+ 0,0,0,0,0,3,0,0,0,12,0,0,0,67,0,0,
+ 0,115,107,0,0,0,116,0,0,106,1,0,100,1,0,107,
+ 9,0,114,41,0,116,0,0,106,1,0,12,114,41,0,116,
+ 2,0,106,3,0,100,2,0,116,4,0,131,2,0,1,120,
+ 59,0,116,0,0,106,1,0,68,93,44,0,125,2,0,121,
+ 14,0,124,2,0,124,1,0,131,1,0,83,87,113,51,0,
+ 4,116,5,0,107,10,0,114,94,0,1,1,1,119,51,0,
+ 89,113,51,0,88,113,51,0,87,100,1,0,83,100,1,0,
+ 83,41,3,122,113,83,101,97,114,99,104,32,115,101,113,117,
+ 101,110,99,101,32,111,102,32,104,111,111,107,115,32,102,111,
+ 114,32,97,32,102,105,110,100,101,114,32,102,111,114,32,39,
+ 112,97,116,104,39,46,10,10,32,32,32,32,32,32,32,32,
+ 73,102,32,39,104,111,111,107,115,39,32,105,115,32,102,97,
+ 108,115,101,32,116,104,101,110,32,117,115,101,32,115,121,115,
+ 46,112,97,116,104,95,104,111,111,107,115,46,10,10,32,32,
+ 32,32,32,32,32,32,78,122,23,115,121,115,46,112,97,116,
+ 104,95,104,111,111,107,115,32,105,115,32,101,109,112,116,121,
+ 41,6,114,8,0,0,0,218,10,112,97,116,104,95,104,111,
+ 111,107,115,114,62,0,0,0,114,63,0,0,0,114,127,0,
+ 0,0,114,109,0,0,0,41,3,114,172,0,0,0,114,37,
+ 0,0,0,90,4,104,111,111,107,114,4,0,0,0,114,4,
+ 0,0,0,114,6,0,0,0,218,11,95,112,97,116,104,95,
+ 104,111,111,107,115,31,4,0,0,115,16,0,0,0,0,7,
+ 25,1,16,1,16,1,3,1,14,1,13,1,12,2,122,22,
+ 80,97,116,104,70,105,110,100,101,114,46,95,112,97,116,104,
+ 95,104,111,111,107,115,99,2,0,0,0,0,0,0,0,3,
+ 0,0,0,19,0,0,0,67,0,0,0,115,123,0,0,0,
+ 124,1,0,100,1,0,107,2,0,114,53,0,121,16,0,116,
+ 0,0,106,1,0,131,0,0,125,1,0,87,110,22,0,4,
+ 116,2,0,107,10,0,114,52,0,1,1,1,100,2,0,83,
+ 89,110,1,0,88,121,17,0,116,3,0,106,4,0,124,1,
+ 0,25,125,2,0,87,110,46,0,4,116,5,0,107,10,0,
+ 114,118,0,1,1,1,124,0,0,106,6,0,124,1,0,131,
+ 1,0,125,2,0,124,2,0,116,3,0,106,4,0,124,1,
+ 0,60,89,110,1,0,88,124,2,0,83,41,3,122,210,71,
+ 101,116,32,116,104,101,32,102,105,110,100,101,114,32,102,111,
+ 114,32,116,104,101,32,112,97,116,104,32,101,110,116,114,121,
+ 32,102,114,111,109,32,115,121,115,46,112,97,116,104,95,105,
+ 109,112,111,114,116,101,114,95,99,97,99,104,101,46,10,10,
+ 32,32,32,32,32,32,32,32,73,102,32,116,104,101,32,112,
+ 97,116,104,32,101,110,116,114,121,32,105,115,32,110,111,116,
+ 32,105,110,32,116,104,101,32,99,97,99,104,101,44,32,102,
+ 105,110,100,32,116,104,101,32,97,112,112,114,111,112,114,105,
+ 97,116,101,32,102,105,110,100,101,114,10,32,32,32,32,32,
+ 32,32,32,97,110,100,32,99,97,99,104,101,32,105,116,46,
+ 32,73,102,32,110,111,32,102,105,110,100,101,114,32,105,115,
+ 32,97,118,97,105,108,97,98,108,101,44,32,115,116,111,114,
+ 101,32,78,111,110,101,46,10,10,32,32,32,32,32,32,32,
+ 32,114,32,0,0,0,78,41,7,114,3,0,0,0,114,47,
+ 0,0,0,218,17,70,105,108,101,78,111,116,70,111,117,110,
+ 100,69,114,114,111,114,114,8,0,0,0,114,252,0,0,0,
+ 114,139,0,0,0,114,0,1,0,0,41,3,114,172,0,0,
+ 0,114,37,0,0,0,114,254,0,0,0,114,4,0,0,0,
+ 114,4,0,0,0,114,6,0,0,0,218,20,95,112,97,116,
+ 104,95,105,109,112,111,114,116,101,114,95,99,97,99,104,101,
+ 48,4,0,0,115,22,0,0,0,0,8,12,1,3,1,16,
+ 1,13,3,9,1,3,1,17,1,13,1,15,1,18,1,122,
+ 31,80,97,116,104,70,105,110,100,101,114,46,95,112,97,116,
+ 104,95,105,109,112,111,114,116,101,114,95,99,97,99,104,101,
+ 99,3,0,0,0,0,0,0,0,6,0,0,0,3,0,0,
+ 0,67,0,0,0,115,119,0,0,0,116,0,0,124,2,0,
+ 100,1,0,131,2,0,114,39,0,124,2,0,106,1,0,124,
+ 1,0,131,1,0,92,2,0,125,3,0,125,4,0,110,21,
+ 0,124,2,0,106,2,0,124,1,0,131,1,0,125,3,0,
+ 103,0,0,125,4,0,124,3,0,100,0,0,107,9,0,114,
+ 88,0,116,3,0,106,4,0,124,1,0,124,3,0,131,2,
+ 0,83,116,3,0,106,5,0,124,1,0,100,0,0,131,2,
+ 0,125,5,0,124,4,0,124,5,0,95,6,0,124,5,0,
+ 83,41,2,78,114,126,0,0,0,41,7,114,117,0,0,0,
+ 114,126,0,0,0,114,183,0,0,0,114,123,0,0,0,114,
+ 180,0,0,0,114,162,0,0,0,114,158,0,0,0,41,6,
+ 114,172,0,0,0,114,128,0,0,0,114,254,0,0,0,114,
+ 129,0,0,0,114,130,0,0,0,114,166,0,0,0,114,4,
+ 0,0,0,114,4,0,0,0,114,6,0,0,0,218,16,95,
+ 108,101,103,97,99,121,95,103,101,116,95,115,112,101,99,70,
+ 4,0,0,115,18,0,0,0,0,4,15,1,24,2,15,1,
+ 6,1,12,1,16,1,18,1,9,1,122,27,80,97,116,104,
+ 70,105,110,100,101,114,46,95,108,101,103,97,99,121,95,103,
+ 101,116,95,115,112,101,99,78,99,4,0,0,0,0,0,0,
+ 0,9,0,0,0,5,0,0,0,67,0,0,0,115,243,0,
+ 0,0,103,0,0,125,4,0,120,230,0,124,2,0,68,93,
+ 191,0,125,5,0,116,0,0,124,5,0,116,1,0,116,2,
+ 0,102,2,0,131,2,0,115,43,0,113,13,0,124,0,0,
+ 106,3,0,124,5,0,131,1,0,125,6,0,124,6,0,100,
+ 1,0,107,9,0,114,13,0,116,4,0,124,6,0,100,2,
+ 0,131,2,0,114,106,0,124,6,0,106,5,0,124,1,0,
+ 124,3,0,131,2,0,125,7,0,110,18,0,124,0,0,106,
+ 6,0,124,1,0,124,6,0,131,2,0,125,7,0,124,7,
+ 0,100,1,0,107,8,0,114,139,0,113,13,0,124,7,0,
+ 106,7,0,100,1,0,107,9,0,114,158,0,124,7,0,83,
+ 124,7,0,106,8,0,125,8,0,124,8,0,100,1,0,107,
+ 8,0,114,191,0,116,9,0,100,3,0,131,1,0,130,1,
+ 0,124,4,0,106,10,0,124,8,0,131,1,0,1,113,13,
+ 0,87,116,11,0,106,12,0,124,1,0,100,1,0,131,2,
+ 0,125,7,0,124,4,0,124,7,0,95,8,0,124,7,0,
+ 83,100,1,0,83,41,4,122,63,70,105,110,100,32,116,104,
+ 101,32,108,111,97,100,101,114,32,111,114,32,110,97,109,101,
+ 115,112,97,99,101,95,112,97,116,104,32,102,111,114,32,116,
+ 104,105,115,32,109,111,100,117,108,101,47,112,97,99,107,97,
+ 103,101,32,110,97,109,101,46,78,114,182,0,0,0,122,19,
+ 115,112,101,99,32,109,105,115,115,105,110,103,32,108,111,97,
+ 100,101,114,41,13,114,145,0,0,0,114,71,0,0,0,218,
+ 5,98,121,116,101,115,114,2,1,0,0,114,117,0,0,0,
+ 114,182,0,0,0,114,3,1,0,0,114,129,0,0,0,114,
+ 158,0,0,0,114,109,0,0,0,114,151,0,0,0,114,123,
+ 0,0,0,114,162,0,0,0,41,9,114,172,0,0,0,114,
+ 128,0,0,0,114,37,0,0,0,114,181,0,0,0,218,14,
+ 110,97,109,101,115,112,97,99,101,95,112,97,116,104,90,5,
+ 101,110,116,114,121,114,254,0,0,0,114,166,0,0,0,114,
+ 130,0,0,0,114,4,0,0,0,114,4,0,0,0,114,6,
+ 0,0,0,218,9,95,103,101,116,95,115,112,101,99,85,4,
+ 0,0,115,40,0,0,0,0,5,6,1,13,1,21,1,3,
+ 1,15,1,12,1,15,1,21,2,18,1,12,1,3,1,15,
+ 1,4,1,9,1,12,1,12,5,17,2,18,1,9,1,122,
+ 20,80,97,116,104,70,105,110,100,101,114,46,95,103,101,116,
+ 95,115,112,101,99,99,4,0,0,0,0,0,0,0,6,0,
+ 0,0,4,0,0,0,67,0,0,0,115,140,0,0,0,124,
+ 2,0,100,1,0,107,8,0,114,21,0,116,0,0,106,1,
+ 0,125,2,0,124,0,0,106,2,0,124,1,0,124,2,0,
+ 124,3,0,131,3,0,125,4,0,124,4,0,100,1,0,107,
+ 8,0,114,58,0,100,1,0,83,124,4,0,106,3,0,100,
+ 1,0,107,8,0,114,132,0,124,4,0,106,4,0,125,5,
+ 0,124,5,0,114,125,0,100,2,0,124,4,0,95,5,0,
+ 116,6,0,124,1,0,124,5,0,124,0,0,106,2,0,131,
+ 3,0,124,4,0,95,4,0,124,4,0,83,100,1,0,83,
+ 110,4,0,124,4,0,83,100,1,0,83,41,3,122,98,102,
+ 105,110,100,32,116,104,101,32,109,111,100,117,108,101,32,111,
+ 110,32,115,121,115,46,112,97,116,104,32,111,114,32,39,112,
+ 97,116,104,39,32,98,97,115,101,100,32,111,110,32,115,121,
+ 115,46,112,97,116,104,95,104,111,111,107,115,32,97,110,100,
+ 10,32,32,32,32,32,32,32,32,115,121,115,46,112,97,116,
+ 104,95,105,109,112,111,114,116,101,114,95,99,97,99,104,101,
+ 46,78,90,9,110,97,109,101,115,112,97,99,101,41,7,114,
+ 8,0,0,0,114,37,0,0,0,114,6,1,0,0,114,129,
+ 0,0,0,114,158,0,0,0,114,160,0,0,0,114,231,0,
+ 0,0,41,6,114,172,0,0,0,114,128,0,0,0,114,37,
+ 0,0,0,114,181,0,0,0,114,166,0,0,0,114,5,1,
0,0,114,4,0,0,0,114,4,0,0,0,114,6,0,0,
- 0,114,203,0,0,0,250,3,0,0,115,2,0,0,0,0,
- 1,122,27,95,78,97,109,101,115,112,97,99,101,76,111,97,
- 100,101,114,46,103,101,116,95,115,111,117,114,99,101,99,2,
- 0,0,0,0,0,0,0,2,0,0,0,6,0,0,0,67,
- 0,0,0,115,22,0,0,0,116,0,0,100,1,0,100,2,
- 0,100,3,0,100,4,0,100,5,0,131,3,1,83,41,6,
- 78,114,32,0,0,0,122,8,60,115,116,114,105,110,103,62,
- 114,190,0,0,0,114,205,0,0,0,84,41,1,114,206,0,
- 0,0,41,2,114,110,0,0,0,114,128,0,0,0,114,4,
- 0,0,0,114,4,0,0,0,114,6,0,0,0,114,188,0,
- 0,0,253,3,0,0,115,2,0,0,0,0,1,122,25,95,
- 78,97,109,101,115,112,97,99,101,76,111,97,100,101,114,46,
- 103,101,116,95,99,111,100,101,99,2,0,0,0,0,0,0,
- 0,2,0,0,0,1,0,0,0,67,0,0,0,115,4,0,
- 0,0,100,1,0,83,41,2,122,42,85,115,101,32,100,101,
- 102,97,117,108,116,32,115,101,109,97,110,116,105,99,115,32,
- 102,111,114,32,109,111,100,117,108,101,32,99,114,101,97,116,
- 105,111,110,46,78,114,4,0,0,0,41,2,114,110,0,0,
- 0,114,166,0,0,0,114,4,0,0,0,114,4,0,0,0,
- 114,6,0,0,0,114,187,0,0,0,0,4,0,0,115,0,
- 0,0,0,122,30,95,78,97,109,101,115,112,97,99,101,76,
- 111,97,100,101,114,46,99,114,101,97,116,101,95,109,111,100,
- 117,108,101,99,2,0,0,0,0,0,0,0,2,0,0,0,
- 1,0,0,0,67,0,0,0,115,4,0,0,0,100,0,0,
- 83,41,1,78,114,4,0,0,0,41,2,114,110,0,0,0,
- 114,191,0,0,0,114,4,0,0,0,114,4,0,0,0,114,
- 6,0,0,0,114,192,0,0,0,3,4,0,0,115,2,0,
- 0,0,0,1,122,28,95,78,97,109,101,115,112,97,99,101,
- 76,111,97,100,101,114,46,101,120,101,99,95,109,111,100,117,
- 108,101,99,2,0,0,0,0,0,0,0,2,0,0,0,3,
- 0,0,0,67,0,0,0,115,32,0,0,0,116,0,0,100,
- 1,0,124,0,0,106,1,0,131,2,0,1,116,2,0,106,
- 3,0,124,0,0,124,1,0,131,2,0,83,41,2,122,98,
- 76,111,97,100,32,97,32,110,97,109,101,115,112,97,99,101,
- 32,109,111,100,117,108,101,46,10,10,32,32,32,32,32,32,
+ 0,114,182,0,0,0,117,4,0,0,115,26,0,0,0,0,
+ 4,12,1,9,1,21,1,12,1,4,1,15,1,9,1,6,
+ 3,9,1,24,1,4,2,7,2,122,20,80,97,116,104,70,
+ 105,110,100,101,114,46,102,105,110,100,95,115,112,101,99,99,
+ 3,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0,
+ 67,0,0,0,115,41,0,0,0,124,0,0,106,0,0,124,
+ 1,0,124,2,0,131,2,0,125,3,0,124,3,0,100,1,
+ 0,107,8,0,114,34,0,100,1,0,83,124,3,0,106,1,
+ 0,83,41,2,122,170,102,105,110,100,32,116,104,101,32,109,
+ 111,100,117,108,101,32,111,110,32,115,121,115,46,112,97,116,
+ 104,32,111,114,32,39,112,97,116,104,39,32,98,97,115,101,
+ 100,32,111,110,32,115,121,115,46,112,97,116,104,95,104,111,
+ 111,107,115,32,97,110,100,10,32,32,32,32,32,32,32,32,
+ 115,121,115,46,112,97,116,104,95,105,109,112,111,114,116,101,
+ 114,95,99,97,99,104,101,46,10,10,32,32,32,32,32,32,
32,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,
32,100,101,112,114,101,99,97,116,101,100,46,32,32,85,115,
- 101,32,101,120,101,99,95,109,111,100,117,108,101,40,41,32,
- 105,110,115,116,101,97,100,46,10,10,32,32,32,32,32,32,
- 32,32,122,38,110,97,109,101,115,112,97,99,101,32,109,111,
- 100,117,108,101,32,108,111,97,100,101,100,32,119,105,116,104,
- 32,112,97,116,104,32,123,33,114,125,41,4,114,107,0,0,
- 0,114,233,0,0,0,114,123,0,0,0,114,193,0,0,0,
- 41,2,114,110,0,0,0,114,128,0,0,0,114,4,0,0,
- 0,114,4,0,0,0,114,6,0,0,0,114,194,0,0,0,
- 6,4,0,0,115,4,0,0,0,0,7,16,1,122,28,95,
- 78,97,109,101,115,112,97,99,101,76,111,97,100,101,114,46,
- 108,111,97,100,95,109,111,100,117,108,101,78,41,12,114,114,
- 0,0,0,114,113,0,0,0,114,115,0,0,0,114,186,0,
- 0,0,114,184,0,0,0,114,249,0,0,0,114,161,0,0,
- 0,114,203,0,0,0,114,188,0,0,0,114,187,0,0,0,
- 114,192,0,0,0,114,194,0,0,0,114,4,0,0,0,114,
- 4,0,0,0,114,4,0,0,0,114,6,0,0,0,114,248,
- 0,0,0,234,3,0,0,115,16,0,0,0,12,1,12,3,
- 18,9,12,3,12,3,12,3,12,3,12,3,114,248,0,0,
- 0,99,0,0,0,0,0,0,0,0,0,0,0,0,5,0,
- 0,0,64,0,0,0,115,160,0,0,0,101,0,0,90,1,
- 0,100,0,0,90,2,0,100,1,0,90,3,0,101,4,0,
- 100,2,0,100,3,0,132,0,0,131,1,0,90,5,0,101,
- 4,0,100,4,0,100,5,0,132,0,0,131,1,0,90,6,
- 0,101,4,0,100,6,0,100,7,0,132,0,0,131,1,0,
- 90,7,0,101,4,0,100,8,0,100,9,0,132,0,0,131,
- 1,0,90,8,0,101,4,0,100,10,0,100,11,0,100,12,
- 0,132,1,0,131,1,0,90,9,0,101,4,0,100,10,0,
- 100,10,0,100,13,0,100,14,0,132,2,0,131,1,0,90,
- 10,0,101,4,0,100,10,0,100,15,0,100,16,0,132,1,
- 0,131,1,0,90,11,0,100,10,0,83,41,17,218,10,80,
- 97,116,104,70,105,110,100,101,114,122,62,77,101,116,97,32,
- 112,97,116,104,32,102,105,110,100,101,114,32,102,111,114,32,
- 115,121,115,46,112,97,116,104,32,97,110,100,32,112,97,99,
- 107,97,103,101,32,95,95,112,97,116,104,95,95,32,97,116,
- 116,114,105,98,117,116,101,115,46,99,1,0,0,0,0,0,
- 0,0,2,0,0,0,4,0,0,0,67,0,0,0,115,55,
- 0,0,0,120,48,0,116,0,0,106,1,0,106,2,0,131,
- 0,0,68,93,31,0,125,1,0,116,3,0,124,1,0,100,
- 1,0,131,2,0,114,16,0,124,1,0,106,4,0,131,0,
- 0,1,113,16,0,87,100,2,0,83,41,3,122,125,67,97,
- 108,108,32,116,104,101,32,105,110,118,97,108,105,100,97,116,
- 101,95,99,97,99,104,101,115,40,41,32,109,101,116,104,111,
- 100,32,111,110,32,97,108,108,32,112,97,116,104,32,101,110,
- 116,114,121,32,102,105,110,100,101,114,115,10,32,32,32,32,
- 32,32,32,32,115,116,111,114,101,100,32,105,110,32,115,121,
- 115,46,112,97,116,104,95,105,109,112,111,114,116,101,114,95,
- 99,97,99,104,101,115,32,40,119,104,101,114,101,32,105,109,
- 112,108,101,109,101,110,116,101,100,41,46,218,17,105,110,118,
- 97,108,105,100,97,116,101,95,99,97,99,104,101,115,78,41,
- 5,114,8,0,0,0,218,19,112,97,116,104,95,105,109,112,
- 111,114,116,101,114,95,99,97,99,104,101,218,6,118,97,108,
- 117,101,115,114,117,0,0,0,114,251,0,0,0,41,2,114,
- 172,0,0,0,218,6,102,105,110,100,101,114,114,4,0,0,
- 0,114,4,0,0,0,114,6,0,0,0,114,251,0,0,0,
- 23,4,0,0,115,6,0,0,0,0,4,22,1,15,1,122,
- 28,80,97,116,104,70,105,110,100,101,114,46,105,110,118,97,
- 108,105,100,97,116,101,95,99,97,99,104,101,115,99,2,0,
- 0,0,0,0,0,0,3,0,0,0,12,0,0,0,67,0,
- 0,0,115,107,0,0,0,116,0,0,106,1,0,100,1,0,
- 107,9,0,114,41,0,116,0,0,106,1,0,12,114,41,0,
- 116,2,0,106,3,0,100,2,0,116,4,0,131,2,0,1,
- 120,59,0,116,0,0,106,1,0,68,93,44,0,125,2,0,
- 121,14,0,124,2,0,124,1,0,131,1,0,83,87,113,51,
- 0,4,116,5,0,107,10,0,114,94,0,1,1,1,119,51,
- 0,89,113,51,0,88,113,51,0,87,100,1,0,83,100,1,
- 0,83,41,3,122,113,83,101,97,114,99,104,32,115,101,113,
- 117,101,110,99,101,32,111,102,32,104,111,111,107,115,32,102,
- 111,114,32,97,32,102,105,110,100,101,114,32,102,111,114,32,
- 39,112,97,116,104,39,46,10,10,32,32,32,32,32,32,32,
- 32,73,102,32,39,104,111,111,107,115,39,32,105,115,32,102,
- 97,108,115,101,32,116,104,101,110,32,117,115,101,32,115,121,
- 115,46,112,97,116,104,95,104,111,111,107,115,46,10,10,32,
- 32,32,32,32,32,32,32,78,122,23,115,121,115,46,112,97,
- 116,104,95,104,111,111,107,115,32,105,115,32,101,109,112,116,
- 121,41,6,114,8,0,0,0,218,10,112,97,116,104,95,104,
- 111,111,107,115,114,62,0,0,0,114,63,0,0,0,114,127,
- 0,0,0,114,109,0,0,0,41,3,114,172,0,0,0,114,
- 37,0,0,0,90,4,104,111,111,107,114,4,0,0,0,114,
- 4,0,0,0,114,6,0,0,0,218,11,95,112,97,116,104,
- 95,104,111,111,107,115,31,4,0,0,115,16,0,0,0,0,
- 7,25,1,16,1,16,1,3,1,14,1,13,1,12,2,122,
- 22,80,97,116,104,70,105,110,100,101,114,46,95,112,97,116,
- 104,95,104,111,111,107,115,99,2,0,0,0,0,0,0,0,
- 3,0,0,0,19,0,0,0,67,0,0,0,115,123,0,0,
- 0,124,1,0,100,1,0,107,2,0,114,53,0,121,16,0,
- 116,0,0,106,1,0,131,0,0,125,1,0,87,110,22,0,
- 4,116,2,0,107,10,0,114,52,0,1,1,1,100,2,0,
- 83,89,110,1,0,88,121,17,0,116,3,0,106,4,0,124,
- 1,0,25,125,2,0,87,110,46,0,4,116,5,0,107,10,
- 0,114,118,0,1,1,1,124,0,0,106,6,0,124,1,0,
- 131,1,0,125,2,0,124,2,0,116,3,0,106,4,0,124,
- 1,0,60,89,110,1,0,88,124,2,0,83,41,3,122,210,
- 71,101,116,32,116,104,101,32,102,105,110,100,101,114,32,102,
- 111,114,32,116,104,101,32,112,97,116,104,32,101,110,116,114,
- 121,32,102,114,111,109,32,115,121,115,46,112,97,116,104,95,
- 105,109,112,111,114,116,101,114,95,99,97,99,104,101,46,10,
- 10,32,32,32,32,32,32,32,32,73,102,32,116,104,101,32,
- 112,97,116,104,32,101,110,116,114,121,32,105,115,32,110,111,
- 116,32,105,110,32,116,104,101,32,99,97,99,104,101,44,32,
- 102,105,110,100,32,116,104,101,32,97,112,112,114,111,112,114,
- 105,97,116,101,32,102,105,110,100,101,114,10,32,32,32,32,
- 32,32,32,32,97,110,100,32,99,97,99,104,101,32,105,116,
- 46,32,73,102,32,110,111,32,102,105,110,100,101,114,32,105,
- 115,32,97,118,97,105,108,97,98,108,101,44,32,115,116,111,
- 114,101,32,78,111,110,101,46,10,10,32,32,32,32,32,32,
- 32,32,114,32,0,0,0,78,41,7,114,3,0,0,0,114,
- 47,0,0,0,218,17,70,105,108,101,78,111,116,70,111,117,
- 110,100,69,114,114,111,114,114,8,0,0,0,114,252,0,0,
- 0,114,139,0,0,0,114,0,1,0,0,41,3,114,172,0,
- 0,0,114,37,0,0,0,114,254,0,0,0,114,4,0,0,
- 0,114,4,0,0,0,114,6,0,0,0,218,20,95,112,97,
- 116,104,95,105,109,112,111,114,116,101,114,95,99,97,99,104,
- 101,48,4,0,0,115,22,0,0,0,0,8,12,1,3,1,
- 16,1,13,3,9,1,3,1,17,1,13,1,15,1,18,1,
- 122,31,80,97,116,104,70,105,110,100,101,114,46,95,112,97,
- 116,104,95,105,109,112,111,114,116,101,114,95,99,97,99,104,
- 101,99,3,0,0,0,0,0,0,0,6,0,0,0,3,0,
- 0,0,67,0,0,0,115,119,0,0,0,116,0,0,124,2,
- 0,100,1,0,131,2,0,114,39,0,124,2,0,106,1,0,
- 124,1,0,131,1,0,92,2,0,125,3,0,125,4,0,110,
- 21,0,124,2,0,106,2,0,124,1,0,131,1,0,125,3,
- 0,103,0,0,125,4,0,124,3,0,100,0,0,107,9,0,
- 114,88,0,116,3,0,106,4,0,124,1,0,124,3,0,131,
- 2,0,83,116,3,0,106,5,0,124,1,0,100,0,0,131,
- 2,0,125,5,0,124,4,0,124,5,0,95,6,0,124,5,
- 0,83,41,2,78,114,126,0,0,0,41,7,114,117,0,0,
- 0,114,126,0,0,0,114,183,0,0,0,114,123,0,0,0,
- 114,180,0,0,0,114,162,0,0,0,114,158,0,0,0,41,
- 6,114,172,0,0,0,114,128,0,0,0,114,254,0,0,0,
- 114,129,0,0,0,114,130,0,0,0,114,166,0,0,0,114,
- 4,0,0,0,114,4,0,0,0,114,6,0,0,0,218,16,
- 95,108,101,103,97,99,121,95,103,101,116,95,115,112,101,99,
- 70,4,0,0,115,18,0,0,0,0,4,15,1,24,2,15,
- 1,6,1,12,1,16,1,18,1,9,1,122,27,80,97,116,
- 104,70,105,110,100,101,114,46,95,108,101,103,97,99,121,95,
- 103,101,116,95,115,112,101,99,78,99,4,0,0,0,0,0,
- 0,0,9,0,0,0,5,0,0,0,67,0,0,0,115,243,
- 0,0,0,103,0,0,125,4,0,120,230,0,124,2,0,68,
- 93,191,0,125,5,0,116,0,0,124,5,0,116,1,0,116,
- 2,0,102,2,0,131,2,0,115,43,0,113,13,0,124,0,
- 0,106,3,0,124,5,0,131,1,0,125,6,0,124,6,0,
- 100,1,0,107,9,0,114,13,0,116,4,0,124,6,0,100,
- 2,0,131,2,0,114,106,0,124,6,0,106,5,0,124,1,
- 0,124,3,0,131,2,0,125,7,0,110,18,0,124,0,0,
- 106,6,0,124,1,0,124,6,0,131,2,0,125,7,0,124,
- 7,0,100,1,0,107,8,0,114,139,0,113,13,0,124,7,
- 0,106,7,0,100,1,0,107,9,0,114,158,0,124,7,0,
- 83,124,7,0,106,8,0,125,8,0,124,8,0,100,1,0,
- 107,8,0,114,191,0,116,9,0,100,3,0,131,1,0,130,
- 1,0,124,4,0,106,10,0,124,8,0,131,1,0,1,113,
- 13,0,87,116,11,0,106,12,0,124,1,0,100,1,0,131,
- 2,0,125,7,0,124,4,0,124,7,0,95,8,0,124,7,
- 0,83,100,1,0,83,41,4,122,63,70,105,110,100,32,116,
- 104,101,32,108,111,97,100,101,114,32,111,114,32,110,97,109,
- 101,115,112,97,99,101,95,112,97,116,104,32,102,111,114,32,
- 116,104,105,115,32,109,111,100,117,108,101,47,112,97,99,107,
- 97,103,101,32,110,97,109,101,46,78,114,182,0,0,0,122,
- 19,115,112,101,99,32,109,105,115,115,105,110,103,32,108,111,
- 97,100,101,114,41,13,114,145,0,0,0,114,71,0,0,0,
- 218,5,98,121,116,101,115,114,2,1,0,0,114,117,0,0,
- 0,114,182,0,0,0,114,3,1,0,0,114,129,0,0,0,
- 114,158,0,0,0,114,109,0,0,0,114,151,0,0,0,114,
- 123,0,0,0,114,162,0,0,0,41,9,114,172,0,0,0,
- 114,128,0,0,0,114,37,0,0,0,114,181,0,0,0,218,
- 14,110,97,109,101,115,112,97,99,101,95,112,97,116,104,90,
- 5,101,110,116,114,121,114,254,0,0,0,114,166,0,0,0,
- 114,130,0,0,0,114,4,0,0,0,114,4,0,0,0,114,
- 6,0,0,0,218,9,95,103,101,116,95,115,112,101,99,85,
- 4,0,0,115,40,0,0,0,0,5,6,1,13,1,21,1,
- 3,1,15,1,12,1,15,1,21,2,18,1,12,1,3,1,
- 15,1,4,1,9,1,12,1,12,5,17,2,18,1,9,1,
- 122,20,80,97,116,104,70,105,110,100,101,114,46,95,103,101,
- 116,95,115,112,101,99,99,4,0,0,0,0,0,0,0,6,
- 0,0,0,4,0,0,0,67,0,0,0,115,140,0,0,0,
- 124,2,0,100,1,0,107,8,0,114,21,0,116,0,0,106,
- 1,0,125,2,0,124,0,0,106,2,0,124,1,0,124,2,
- 0,124,3,0,131,3,0,125,4,0,124,4,0,100,1,0,
- 107,8,0,114,58,0,100,1,0,83,124,4,0,106,3,0,
- 100,1,0,107,8,0,114,132,0,124,4,0,106,4,0,125,
- 5,0,124,5,0,114,125,0,100,2,0,124,4,0,95,5,
- 0,116,6,0,124,1,0,124,5,0,124,0,0,106,2,0,
- 131,3,0,124,4,0,95,4,0,124,4,0,83,100,1,0,
- 83,110,4,0,124,4,0,83,100,1,0,83,41,3,122,98,
- 102,105,110,100,32,116,104,101,32,109,111,100,117,108,101,32,
- 111,110,32,115,121,115,46,112,97,116,104,32,111,114,32,39,
- 112,97,116,104,39,32,98,97,115,101,100,32,111,110,32,115,
- 121,115,46,112,97,116,104,95,104,111,111,107,115,32,97,110,
- 100,10,32,32,32,32,32,32,32,32,115,121,115,46,112,97,
- 116,104,95,105,109,112,111,114,116,101,114,95,99,97,99,104,
- 101,46,78,90,9,110,97,109,101,115,112,97,99,101,41,7,
- 114,8,0,0,0,114,37,0,0,0,114,6,1,0,0,114,
- 129,0,0,0,114,158,0,0,0,114,160,0,0,0,114,231,
- 0,0,0,41,6,114,172,0,0,0,114,128,0,0,0,114,
- 37,0,0,0,114,181,0,0,0,114,166,0,0,0,114,5,
- 1,0,0,114,4,0,0,0,114,4,0,0,0,114,6,0,
- 0,0,114,182,0,0,0,117,4,0,0,115,26,0,0,0,
- 0,4,12,1,9,1,21,1,12,1,4,1,15,1,9,1,
- 6,3,9,1,24,1,4,2,7,2,122,20,80,97,116,104,
- 70,105,110,100,101,114,46,102,105,110,100,95,115,112,101,99,
- 99,3,0,0,0,0,0,0,0,4,0,0,0,3,0,0,
- 0,67,0,0,0,115,41,0,0,0,124,0,0,106,0,0,
- 124,1,0,124,2,0,131,2,0,125,3,0,124,3,0,100,
- 1,0,107,8,0,114,34,0,100,1,0,83,124,3,0,106,
- 1,0,83,41,2,122,170,102,105,110,100,32,116,104,101,32,
- 109,111,100,117,108,101,32,111,110,32,115,121,115,46,112,97,
- 116,104,32,111,114,32,39,112,97,116,104,39,32,98,97,115,
- 101,100,32,111,110,32,115,121,115,46,112,97,116,104,95,104,
- 111,111,107,115,32,97,110,100,10,32,32,32,32,32,32,32,
- 32,115,121,115,46,112,97,116,104,95,105,109,112,111,114,116,
- 101,114,95,99,97,99,104,101,46,10,10,32,32,32,32,32,
- 32,32,32,84,104,105,115,32,109,101,116,104,111,100,32,105,
- 115,32,100,101,112,114,101,99,97,116,101,100,46,32,32,85,
- 115,101,32,102,105,110,100,95,115,112,101,99,40,41,32,105,
- 110,115,116,101,97,100,46,10,10,32,32,32,32,32,32,32,
- 32,78,41,2,114,182,0,0,0,114,129,0,0,0,41,4,
- 114,172,0,0,0,114,128,0,0,0,114,37,0,0,0,114,
- 166,0,0,0,114,4,0,0,0,114,4,0,0,0,114,6,
- 0,0,0,114,183,0,0,0,139,4,0,0,115,8,0,0,
- 0,0,8,18,1,12,1,4,1,122,22,80,97,116,104,70,
- 105,110,100,101,114,46,102,105,110,100,95,109,111,100,117,108,
- 101,41,12,114,114,0,0,0,114,113,0,0,0,114,115,0,
- 0,0,114,116,0,0,0,114,184,0,0,0,114,251,0,0,
- 0,114,0,1,0,0,114,2,1,0,0,114,3,1,0,0,
- 114,6,1,0,0,114,182,0,0,0,114,183,0,0,0,114,
- 4,0,0,0,114,4,0,0,0,114,4,0,0,0,114,6,
- 0,0,0,114,250,0,0,0,19,4,0,0,115,22,0,0,
- 0,12,2,6,2,18,8,18,17,18,22,18,15,3,1,18,
- 31,3,1,21,21,3,1,114,250,0,0,0,99,0,0,0,
- 0,0,0,0,0,0,0,0,0,3,0,0,0,64,0,0,
- 0,115,133,0,0,0,101,0,0,90,1,0,100,0,0,90,
- 2,0,100,1,0,90,3,0,100,2,0,100,3,0,132,0,
- 0,90,4,0,100,4,0,100,5,0,132,0,0,90,5,0,
- 101,6,0,90,7,0,100,6,0,100,7,0,132,0,0,90,
- 8,0,100,8,0,100,9,0,132,0,0,90,9,0,100,10,
- 0,100,11,0,100,12,0,132,1,0,90,10,0,100,13,0,
- 100,14,0,132,0,0,90,11,0,101,12,0,100,15,0,100,
- 16,0,132,0,0,131,1,0,90,13,0,100,17,0,100,18,
- 0,132,0,0,90,14,0,100,10,0,83,41,19,218,10,70,
- 105,108,101,70,105,110,100,101,114,122,172,70,105,108,101,45,
- 98,97,115,101,100,32,102,105,110,100,101,114,46,10,10,32,
- 32,32,32,73,110,116,101,114,97,99,116,105,111,110,115,32,
- 119,105,116,104,32,116,104,101,32,102,105,108,101,32,115,121,
- 115,116,101,109,32,97,114,101,32,99,97,99,104,101,100,32,
- 102,111,114,32,112,101,114,102,111,114,109,97,110,99,101,44,
- 32,98,101,105,110,103,10,32,32,32,32,114,101,102,114,101,
- 115,104,101,100,32,119,104,101,110,32,116,104,101,32,100,105,
- 114,101,99,116,111,114,121,32,116,104,101,32,102,105,110,100,
- 101,114,32,105,115,32,104,97,110,100,108,105,110,103,32,104,
- 97,115,32,98,101,101,110,32,109,111,100,105,102,105,101,100,
- 46,10,10,32,32,32,32,99,2,0,0,0,0,0,0,0,
- 5,0,0,0,5,0,0,0,7,0,0,0,115,122,0,0,
- 0,103,0,0,125,3,0,120,52,0,124,2,0,68,93,44,
- 0,92,2,0,137,0,0,125,4,0,124,3,0,106,0,0,
- 135,0,0,102,1,0,100,1,0,100,2,0,134,0,0,124,
- 4,0,68,131,1,0,131,1,0,1,113,13,0,87,124,3,
- 0,124,0,0,95,1,0,124,1,0,112,79,0,100,3,0,
- 124,0,0,95,2,0,100,6,0,124,0,0,95,3,0,116,
- 4,0,131,0,0,124,0,0,95,5,0,116,4,0,131,0,
- 0,124,0,0,95,6,0,100,5,0,83,41,7,122,154,73,
- 110,105,116,105,97,108,105,122,101,32,119,105,116,104,32,116,
- 104,101,32,112,97,116,104,32,116,111,32,115,101,97,114,99,
- 104,32,111,110,32,97,110,100,32,97,32,118,97,114,105,97,
- 98,108,101,32,110,117,109,98,101,114,32,111,102,10,32,32,
- 32,32,32,32,32,32,50,45,116,117,112,108,101,115,32,99,
- 111,110,116,97,105,110,105,110,103,32,116,104,101,32,108,111,
- 97,100,101,114,32,97,110,100,32,116,104,101,32,102,105,108,
- 101,32,115,117,102,102,105,120,101,115,32,116,104,101,32,108,
- 111,97,100,101,114,10,32,32,32,32,32,32,32,32,114,101,
- 99,111,103,110,105,122,101,115,46,99,1,0,0,0,0,0,
- 0,0,2,0,0,0,3,0,0,0,51,0,0,0,115,27,
- 0,0,0,124,0,0,93,17,0,125,1,0,124,1,0,136,
- 0,0,102,2,0,86,1,113,3,0,100,0,0,83,41,1,
- 78,114,4,0,0,0,41,2,114,24,0,0,0,114,226,0,
- 0,0,41,1,114,129,0,0,0,114,4,0,0,0,114,6,
- 0,0,0,114,228,0,0,0,168,4,0,0,115,2,0,0,
- 0,6,0,122,38,70,105,108,101,70,105,110,100,101,114,46,
- 95,95,105,110,105,116,95,95,46,60,108,111,99,97,108,115,
- 62,46,60,103,101,110,101,120,112,114,62,114,60,0,0,0,
- 114,31,0,0,0,78,114,89,0,0,0,41,7,114,151,0,
- 0,0,218,8,95,108,111,97,100,101,114,115,114,37,0,0,
- 0,218,11,95,112,97,116,104,95,109,116,105,109,101,218,3,
- 115,101,116,218,11,95,112,97,116,104,95,99,97,99,104,101,
- 218,19,95,114,101,108,97,120,101,100,95,112,97,116,104,95,
- 99,97,99,104,101,41,5,114,110,0,0,0,114,37,0,0,
- 0,218,14,108,111,97,100,101,114,95,100,101,116,97,105,108,
- 115,90,7,108,111,97,100,101,114,115,114,168,0,0,0,114,
- 4,0,0,0,41,1,114,129,0,0,0,114,6,0,0,0,
- 114,186,0,0,0,162,4,0,0,115,16,0,0,0,0,4,
- 6,1,19,1,36,1,9,2,15,1,9,1,12,1,122,19,
- 70,105,108,101,70,105,110,100,101,114,46,95,95,105,110,105,
- 116,95,95,99,1,0,0,0,0,0,0,0,1,0,0,0,
- 2,0,0,0,67,0,0,0,115,13,0,0,0,100,3,0,
- 124,0,0,95,0,0,100,2,0,83,41,4,122,31,73,110,
- 118,97,108,105,100,97,116,101,32,116,104,101,32,100,105,114,
- 101,99,116,111,114,121,32,109,116,105,109,101,46,114,31,0,
- 0,0,78,114,89,0,0,0,41,1,114,9,1,0,0,41,
- 1,114,110,0,0,0,114,4,0,0,0,114,4,0,0,0,
- 114,6,0,0,0,114,251,0,0,0,176,4,0,0,115,2,
- 0,0,0,0,2,122,28,70,105,108,101,70,105,110,100,101,
- 114,46,105,110,118,97,108,105,100,97,116,101,95,99,97,99,
- 104,101,115,99,2,0,0,0,0,0,0,0,3,0,0,0,
- 2,0,0,0,67,0,0,0,115,59,0,0,0,124,0,0,
- 106,0,0,124,1,0,131,1,0,125,2,0,124,2,0,100,
- 1,0,107,8,0,114,37,0,100,1,0,103,0,0,102,2,
- 0,83,124,2,0,106,1,0,124,2,0,106,2,0,112,55,
- 0,103,0,0,102,2,0,83,41,2,122,197,84,114,121,32,
- 116,111,32,102,105,110,100,32,97,32,108,111,97,100,101,114,
+ 101,32,102,105,110,100,95,115,112,101,99,40,41,32,105,110,
+ 115,116,101,97,100,46,10,10,32,32,32,32,32,32,32,32,
+ 78,41,2,114,182,0,0,0,114,129,0,0,0,41,4,114,
+ 172,0,0,0,114,128,0,0,0,114,37,0,0,0,114,166,
+ 0,0,0,114,4,0,0,0,114,4,0,0,0,114,6,0,
+ 0,0,114,183,0,0,0,139,4,0,0,115,8,0,0,0,
+ 0,8,18,1,12,1,4,1,122,22,80,97,116,104,70,105,
+ 110,100,101,114,46,102,105,110,100,95,109,111,100,117,108,101,
+ 41,12,114,114,0,0,0,114,113,0,0,0,114,115,0,0,
+ 0,114,116,0,0,0,114,184,0,0,0,114,251,0,0,0,
+ 114,0,1,0,0,114,2,1,0,0,114,3,1,0,0,114,
+ 6,1,0,0,114,182,0,0,0,114,183,0,0,0,114,4,
+ 0,0,0,114,4,0,0,0,114,4,0,0,0,114,6,0,
+ 0,0,114,250,0,0,0,19,4,0,0,115,22,0,0,0,
+ 12,2,6,2,18,8,18,17,18,22,18,15,3,1,18,31,
+ 3,1,21,21,3,1,114,250,0,0,0,99,0,0,0,0,
+ 0,0,0,0,0,0,0,0,3,0,0,0,64,0,0,0,
+ 115,133,0,0,0,101,0,0,90,1,0,100,0,0,90,2,
+ 0,100,1,0,90,3,0,100,2,0,100,3,0,132,0,0,
+ 90,4,0,100,4,0,100,5,0,132,0,0,90,5,0,101,
+ 6,0,90,7,0,100,6,0,100,7,0,132,0,0,90,8,
+ 0,100,8,0,100,9,0,132,0,0,90,9,0,100,10,0,
+ 100,11,0,100,12,0,132,1,0,90,10,0,100,13,0,100,
+ 14,0,132,0,0,90,11,0,101,12,0,100,15,0,100,16,
+ 0,132,0,0,131,1,0,90,13,0,100,17,0,100,18,0,
+ 132,0,0,90,14,0,100,10,0,83,41,19,218,10,70,105,
+ 108,101,70,105,110,100,101,114,122,172,70,105,108,101,45,98,
+ 97,115,101,100,32,102,105,110,100,101,114,46,10,10,32,32,
+ 32,32,73,110,116,101,114,97,99,116,105,111,110,115,32,119,
+ 105,116,104,32,116,104,101,32,102,105,108,101,32,115,121,115,
+ 116,101,109,32,97,114,101,32,99,97,99,104,101,100,32,102,
+ 111,114,32,112,101,114,102,111,114,109,97,110,99,101,44,32,
+ 98,101,105,110,103,10,32,32,32,32,114,101,102,114,101,115,
+ 104,101,100,32,119,104,101,110,32,116,104,101,32,100,105,114,
+ 101,99,116,111,114,121,32,116,104,101,32,102,105,110,100,101,
+ 114,32,105,115,32,104,97,110,100,108,105,110,103,32,104,97,
+ 115,32,98,101,101,110,32,109,111,100,105,102,105,101,100,46,
+ 10,10,32,32,32,32,99,2,0,0,0,0,0,0,0,5,
+ 0,0,0,5,0,0,0,7,0,0,0,115,122,0,0,0,
+ 103,0,0,125,3,0,120,52,0,124,2,0,68,93,44,0,
+ 92,2,0,137,0,0,125,4,0,124,3,0,106,0,0,135,
+ 0,0,102,1,0,100,1,0,100,2,0,134,0,0,124,4,
+ 0,68,131,1,0,131,1,0,1,113,13,0,87,124,3,0,
+ 124,0,0,95,1,0,124,1,0,112,79,0,100,3,0,124,
+ 0,0,95,2,0,100,6,0,124,0,0,95,3,0,116,4,
+ 0,131,0,0,124,0,0,95,5,0,116,4,0,131,0,0,
+ 124,0,0,95,6,0,100,5,0,83,41,7,122,154,73,110,
+ 105,116,105,97,108,105,122,101,32,119,105,116,104,32,116,104,
+ 101,32,112,97,116,104,32,116,111,32,115,101,97,114,99,104,
+ 32,111,110,32,97,110,100,32,97,32,118,97,114,105,97,98,
+ 108,101,32,110,117,109,98,101,114,32,111,102,10,32,32,32,
+ 32,32,32,32,32,50,45,116,117,112,108,101,115,32,99,111,
+ 110,116,97,105,110,105,110,103,32,116,104,101,32,108,111,97,
+ 100,101,114,32,97,110,100,32,116,104,101,32,102,105,108,101,
+ 32,115,117,102,102,105,120,101,115,32,116,104,101,32,108,111,
+ 97,100,101,114,10,32,32,32,32,32,32,32,32,114,101,99,
+ 111,103,110,105,122,101,115,46,99,1,0,0,0,0,0,0,
+ 0,2,0,0,0,3,0,0,0,51,0,0,0,115,27,0,
+ 0,0,124,0,0,93,17,0,125,1,0,124,1,0,136,0,
+ 0,102,2,0,86,1,113,3,0,100,0,0,83,41,1,78,
+ 114,4,0,0,0,41,2,114,24,0,0,0,114,226,0,0,
+ 0,41,1,114,129,0,0,0,114,4,0,0,0,114,6,0,
+ 0,0,114,228,0,0,0,168,4,0,0,115,2,0,0,0,
+ 6,0,122,38,70,105,108,101,70,105,110,100,101,114,46,95,
+ 95,105,110,105,116,95,95,46,60,108,111,99,97,108,115,62,
+ 46,60,103,101,110,101,120,112,114,62,114,60,0,0,0,114,
+ 31,0,0,0,78,114,89,0,0,0,41,7,114,151,0,0,
+ 0,218,8,95,108,111,97,100,101,114,115,114,37,0,0,0,
+ 218,11,95,112,97,116,104,95,109,116,105,109,101,218,3,115,
+ 101,116,218,11,95,112,97,116,104,95,99,97,99,104,101,218,
+ 19,95,114,101,108,97,120,101,100,95,112,97,116,104,95,99,
+ 97,99,104,101,41,5,114,110,0,0,0,114,37,0,0,0,
+ 218,14,108,111,97,100,101,114,95,100,101,116,97,105,108,115,
+ 90,7,108,111,97,100,101,114,115,114,168,0,0,0,114,4,
+ 0,0,0,41,1,114,129,0,0,0,114,6,0,0,0,114,
+ 186,0,0,0,162,4,0,0,115,16,0,0,0,0,4,6,
+ 1,19,1,36,1,9,2,15,1,9,1,12,1,122,19,70,
+ 105,108,101,70,105,110,100,101,114,46,95,95,105,110,105,116,
+ 95,95,99,1,0,0,0,0,0,0,0,1,0,0,0,2,
+ 0,0,0,67,0,0,0,115,13,0,0,0,100,3,0,124,
+ 0,0,95,0,0,100,2,0,83,41,4,122,31,73,110,118,
+ 97,108,105,100,97,116,101,32,116,104,101,32,100,105,114,101,
+ 99,116,111,114,121,32,109,116,105,109,101,46,114,31,0,0,
+ 0,78,114,89,0,0,0,41,1,114,9,1,0,0,41,1,
+ 114,110,0,0,0,114,4,0,0,0,114,4,0,0,0,114,
+ 6,0,0,0,114,251,0,0,0,176,4,0,0,115,2,0,
+ 0,0,0,2,122,28,70,105,108,101,70,105,110,100,101,114,
+ 46,105,110,118,97,108,105,100,97,116,101,95,99,97,99,104,
+ 101,115,99,2,0,0,0,0,0,0,0,3,0,0,0,2,
+ 0,0,0,67,0,0,0,115,59,0,0,0,124,0,0,106,
+ 0,0,124,1,0,131,1,0,125,2,0,124,2,0,100,1,
+ 0,107,8,0,114,37,0,100,1,0,103,0,0,102,2,0,
+ 83,124,2,0,106,1,0,124,2,0,106,2,0,112,55,0,
+ 103,0,0,102,2,0,83,41,2,122,197,84,114,121,32,116,
+ 111,32,102,105,110,100,32,97,32,108,111,97,100,101,114,32,
+ 102,111,114,32,116,104,101,32,115,112,101,99,105,102,105,101,
+ 100,32,109,111,100,117,108,101,44,32,111,114,32,116,104,101,
+ 32,110,97,109,101,115,112,97,99,101,10,32,32,32,32,32,
+ 32,32,32,112,97,99,107,97,103,101,32,112,111,114,116,105,
+ 111,110,115,46,32,82,101,116,117,114,110,115,32,40,108,111,
+ 97,100,101,114,44,32,108,105,115,116,45,111,102,45,112,111,
+ 114,116,105,111,110,115,41,46,10,10,32,32,32,32,32,32,
+ 32,32,84,104,105,115,32,109,101,116,104,111,100,32,105,115,
+ 32,100,101,112,114,101,99,97,116,101,100,46,32,32,85,115,
+ 101,32,102,105,110,100,95,115,112,101,99,40,41,32,105,110,
+ 115,116,101,97,100,46,10,10,32,32,32,32,32,32,32,32,
+ 78,41,3,114,182,0,0,0,114,129,0,0,0,114,158,0,
+ 0,0,41,3,114,110,0,0,0,114,128,0,0,0,114,166,
+ 0,0,0,114,4,0,0,0,114,4,0,0,0,114,6,0,
+ 0,0,114,126,0,0,0,182,4,0,0,115,8,0,0,0,
+ 0,7,15,1,12,1,10,1,122,22,70,105,108,101,70,105,
+ 110,100,101,114,46,102,105,110,100,95,108,111,97,100,101,114,
+ 99,6,0,0,0,0,0,0,0,7,0,0,0,7,0,0,
+ 0,67,0,0,0,115,40,0,0,0,124,1,0,124,2,0,
+ 124,3,0,131,2,0,125,6,0,116,0,0,124,2,0,124,
+ 3,0,100,1,0,124,6,0,100,2,0,124,4,0,131,2,
+ 2,83,41,3,78,114,129,0,0,0,114,158,0,0,0,41,
+ 1,114,169,0,0,0,41,7,114,110,0,0,0,114,167,0,
+ 0,0,114,128,0,0,0,114,37,0,0,0,90,4,115,109,
+ 115,108,114,181,0,0,0,114,129,0,0,0,114,4,0,0,
+ 0,114,4,0,0,0,114,6,0,0,0,114,6,1,0,0,
+ 194,4,0,0,115,6,0,0,0,0,1,15,1,18,1,122,
+ 20,70,105,108,101,70,105,110,100,101,114,46,95,103,101,116,
+ 95,115,112,101,99,78,99,3,0,0,0,0,0,0,0,14,
+ 0,0,0,15,0,0,0,67,0,0,0,115,234,1,0,0,
+ 100,1,0,125,3,0,124,1,0,106,0,0,100,2,0,131,
+ 1,0,100,3,0,25,125,4,0,121,34,0,116,1,0,124,
+ 0,0,106,2,0,112,49,0,116,3,0,106,4,0,131,0,
+ 0,131,1,0,106,5,0,125,5,0,87,110,24,0,4,116,
+ 6,0,107,10,0,114,85,0,1,1,1,100,10,0,125,5,
+ 0,89,110,1,0,88,124,5,0,124,0,0,106,7,0,107,
+ 3,0,114,120,0,124,0,0,106,8,0,131,0,0,1,124,
+ 5,0,124,0,0,95,7,0,116,9,0,131,0,0,114,153,
+ 0,124,0,0,106,10,0,125,6,0,124,4,0,106,11,0,
+ 131,0,0,125,7,0,110,15,0,124,0,0,106,12,0,125,
+ 6,0,124,4,0,125,7,0,124,7,0,124,6,0,107,6,
+ 0,114,45,1,116,13,0,124,0,0,106,2,0,124,4,0,
+ 131,2,0,125,8,0,120,100,0,124,0,0,106,14,0,68,
+ 93,77,0,92,2,0,125,9,0,125,10,0,100,5,0,124,
+ 9,0,23,125,11,0,116,13,0,124,8,0,124,11,0,131,
+ 2,0,125,12,0,116,15,0,124,12,0,131,1,0,114,208,
+ 0,124,0,0,106,16,0,124,10,0,124,1,0,124,12,0,
+ 124,8,0,103,1,0,124,2,0,131,5,0,83,113,208,0,
+ 87,116,17,0,124,8,0,131,1,0,125,3,0,120,123,0,
+ 124,0,0,106,14,0,68,93,112,0,92,2,0,125,9,0,
+ 125,10,0,116,13,0,124,0,0,106,2,0,124,4,0,124,
+ 9,0,23,131,2,0,125,12,0,116,18,0,100,6,0,106,
+ 19,0,124,12,0,131,1,0,100,7,0,100,3,0,131,1,
+ 1,1,124,7,0,124,9,0,23,124,6,0,107,6,0,114,
+ 55,1,116,15,0,124,12,0,131,1,0,114,55,1,124,0,
+ 0,106,16,0,124,10,0,124,1,0,124,12,0,100,8,0,
+ 124,2,0,131,5,0,83,113,55,1,87,124,3,0,114,230,
+ 1,116,18,0,100,9,0,106,19,0,124,8,0,131,1,0,
+ 131,1,0,1,116,20,0,106,21,0,124,1,0,100,8,0,
+ 131,2,0,125,13,0,124,8,0,103,1,0,124,13,0,95,
+ 22,0,124,13,0,83,100,8,0,83,41,11,122,102,84,114,
+ 121,32,116,111,32,102,105,110,100,32,97,32,115,112,101,99,
32,102,111,114,32,116,104,101,32,115,112,101,99,105,102,105,
- 101,100,32,109,111,100,117,108,101,44,32,111,114,32,116,104,
- 101,32,110,97,109,101,115,112,97,99,101,10,32,32,32,32,
- 32,32,32,32,112,97,99,107,97,103,101,32,112,111,114,116,
- 105,111,110,115,46,32,82,101,116,117,114,110,115,32,40,108,
- 111,97,100,101,114,44,32,108,105,115,116,45,111,102,45,112,
- 111,114,116,105,111,110,115,41,46,10,10,32,32,32,32,32,
- 32,32,32,84,104,105,115,32,109,101,116,104,111,100,32,105,
- 115,32,100,101,112,114,101,99,97,116,101,100,46,32,32,85,
- 115,101,32,102,105,110,100,95,115,112,101,99,40,41,32,105,
- 110,115,116,101,97,100,46,10,10,32,32,32,32,32,32,32,
- 32,78,41,3,114,182,0,0,0,114,129,0,0,0,114,158,
- 0,0,0,41,3,114,110,0,0,0,114,128,0,0,0,114,
- 166,0,0,0,114,4,0,0,0,114,4,0,0,0,114,6,
- 0,0,0,114,126,0,0,0,182,4,0,0,115,8,0,0,
- 0,0,7,15,1,12,1,10,1,122,22,70,105,108,101,70,
- 105,110,100,101,114,46,102,105,110,100,95,108,111,97,100,101,
- 114,99,6,0,0,0,0,0,0,0,7,0,0,0,7,0,
- 0,0,67,0,0,0,115,40,0,0,0,124,1,0,124,2,
- 0,124,3,0,131,2,0,125,6,0,116,0,0,124,2,0,
- 124,3,0,100,1,0,124,6,0,100,2,0,124,4,0,131,
- 2,2,83,41,3,78,114,129,0,0,0,114,158,0,0,0,
- 41,1,114,169,0,0,0,41,7,114,110,0,0,0,114,167,
- 0,0,0,114,128,0,0,0,114,37,0,0,0,90,4,115,
- 109,115,108,114,181,0,0,0,114,129,0,0,0,114,4,0,
- 0,0,114,4,0,0,0,114,6,0,0,0,114,6,1,0,
- 0,194,4,0,0,115,6,0,0,0,0,1,15,1,18,1,
- 122,20,70,105,108,101,70,105,110,100,101,114,46,95,103,101,
- 116,95,115,112,101,99,78,99,3,0,0,0,0,0,0,0,
- 14,0,0,0,15,0,0,0,67,0,0,0,115,234,1,0,
- 0,100,1,0,125,3,0,124,1,0,106,0,0,100,2,0,
- 131,1,0,100,3,0,25,125,4,0,121,34,0,116,1,0,
- 124,0,0,106,2,0,112,49,0,116,3,0,106,4,0,131,
- 0,0,131,1,0,106,5,0,125,5,0,87,110,24,0,4,
- 116,6,0,107,10,0,114,85,0,1,1,1,100,10,0,125,
- 5,0,89,110,1,0,88,124,5,0,124,0,0,106,7,0,
- 107,3,0,114,120,0,124,0,0,106,8,0,131,0,0,1,
- 124,5,0,124,0,0,95,7,0,116,9,0,131,0,0,114,
- 153,0,124,0,0,106,10,0,125,6,0,124,4,0,106,11,
- 0,131,0,0,125,7,0,110,15,0,124,0,0,106,12,0,
- 125,6,0,124,4,0,125,7,0,124,7,0,124,6,0,107,
- 6,0,114,45,1,116,13,0,124,0,0,106,2,0,124,4,
- 0,131,2,0,125,8,0,120,100,0,124,0,0,106,14,0,
- 68,93,77,0,92,2,0,125,9,0,125,10,0,100,5,0,
- 124,9,0,23,125,11,0,116,13,0,124,8,0,124,11,0,
- 131,2,0,125,12,0,116,15,0,124,12,0,131,1,0,114,
- 208,0,124,0,0,106,16,0,124,10,0,124,1,0,124,12,
- 0,124,8,0,103,1,0,124,2,0,131,5,0,83,113,208,
- 0,87,116,17,0,124,8,0,131,1,0,125,3,0,120,123,
- 0,124,0,0,106,14,0,68,93,112,0,92,2,0,125,9,
- 0,125,10,0,116,13,0,124,0,0,106,2,0,124,4,0,
- 124,9,0,23,131,2,0,125,12,0,116,18,0,100,6,0,
- 106,19,0,124,12,0,131,1,0,100,7,0,100,3,0,131,
- 1,1,1,124,7,0,124,9,0,23,124,6,0,107,6,0,
- 114,55,1,116,15,0,124,12,0,131,1,0,114,55,1,124,
- 0,0,106,16,0,124,10,0,124,1,0,124,12,0,100,8,
- 0,124,2,0,131,5,0,83,113,55,1,87,124,3,0,114,
- 230,1,116,18,0,100,9,0,106,19,0,124,8,0,131,1,
- 0,131,1,0,1,116,20,0,106,21,0,124,1,0,100,8,
- 0,131,2,0,125,13,0,124,8,0,103,1,0,124,13,0,
- 95,22,0,124,13,0,83,100,8,0,83,41,11,122,102,84,
- 114,121,32,116,111,32,102,105,110,100,32,97,32,115,112,101,
- 99,32,102,111,114,32,116,104,101,32,115,112,101,99,105,102,
- 105,101,100,32,109,111,100,117,108,101,46,32,32,82,101,116,
- 117,114,110,115,32,116,104,101,10,32,32,32,32,32,32,32,
- 32,109,97,116,99,104,105,110,103,32,115,112,101,99,44,32,
- 111,114,32,78,111,110,101,32,105,102,32,110,111,116,32,102,
- 111,117,110,100,46,70,114,60,0,0,0,114,58,0,0,0,
- 114,31,0,0,0,114,186,0,0,0,122,9,116,114,121,105,
- 110,103,32,123,125,114,100,0,0,0,78,122,25,112,111,115,
- 115,105,98,108,101,32,110,97,109,101,115,112,97,99,101,32,
- 102,111,114,32,123,125,114,89,0,0,0,41,23,114,34,0,
- 0,0,114,41,0,0,0,114,37,0,0,0,114,3,0,0,
- 0,114,47,0,0,0,114,220,0,0,0,114,42,0,0,0,
- 114,9,1,0,0,218,11,95,102,105,108,108,95,99,97,99,
- 104,101,114,7,0,0,0,114,12,1,0,0,114,90,0,0,
- 0,114,11,1,0,0,114,30,0,0,0,114,8,1,0,0,
- 114,46,0,0,0,114,6,1,0,0,114,48,0,0,0,114,
- 107,0,0,0,114,49,0,0,0,114,123,0,0,0,114,162,
- 0,0,0,114,158,0,0,0,41,14,114,110,0,0,0,114,
- 128,0,0,0,114,181,0,0,0,90,12,105,115,95,110,97,
- 109,101,115,112,97,99,101,90,11,116,97,105,108,95,109,111,
- 100,117,108,101,114,135,0,0,0,90,5,99,97,99,104,101,
- 90,12,99,97,99,104,101,95,109,111,100,117,108,101,90,9,
- 98,97,115,101,95,112,97,116,104,114,226,0,0,0,114,167,
- 0,0,0,90,13,105,110,105,116,95,102,105,108,101,110,97,
- 109,101,90,9,102,117,108,108,95,112,97,116,104,114,166,0,
- 0,0,114,4,0,0,0,114,4,0,0,0,114,6,0,0,
- 0,114,182,0,0,0,199,4,0,0,115,68,0,0,0,0,
- 3,6,1,19,1,3,1,34,1,13,1,11,1,15,1,10,
- 1,9,2,9,1,9,1,15,2,9,1,6,2,12,1,18,
- 1,22,1,10,1,15,1,12,1,32,4,12,2,22,1,22,
- 1,25,1,16,1,12,1,29,1,6,1,19,1,18,1,12,
- 1,4,1,122,20,70,105,108,101,70,105,110,100,101,114,46,
- 102,105,110,100,95,115,112,101,99,99,1,0,0,0,0,0,
- 0,0,9,0,0,0,13,0,0,0,67,0,0,0,115,11,
- 1,0,0,124,0,0,106,0,0,125,1,0,121,31,0,116,
- 1,0,106,2,0,124,1,0,112,33,0,116,1,0,106,3,
- 0,131,0,0,131,1,0,125,2,0,87,110,33,0,4,116,
- 4,0,116,5,0,116,6,0,102,3,0,107,10,0,114,75,
- 0,1,1,1,103,0,0,125,2,0,89,110,1,0,88,116,
- 7,0,106,8,0,106,9,0,100,1,0,131,1,0,115,112,
- 0,116,10,0,124,2,0,131,1,0,124,0,0,95,11,0,
- 110,111,0,116,10,0,131,0,0,125,3,0,120,90,0,124,
- 2,0,68,93,82,0,125,4,0,124,4,0,106,12,0,100,
- 2,0,131,1,0,92,3,0,125,5,0,125,6,0,125,7,
- 0,124,6,0,114,191,0,100,3,0,106,13,0,124,5,0,
- 124,7,0,106,14,0,131,0,0,131,2,0,125,8,0,110,
- 6,0,124,5,0,125,8,0,124,3,0,106,15,0,124,8,
- 0,131,1,0,1,113,128,0,87,124,3,0,124,0,0,95,
- 11,0,116,7,0,106,8,0,106,9,0,116,16,0,131,1,
- 0,114,7,1,100,4,0,100,5,0,132,0,0,124,2,0,
- 68,131,1,0,124,0,0,95,17,0,100,6,0,83,41,7,
- 122,68,70,105,108,108,32,116,104,101,32,99,97,99,104,101,
- 32,111,102,32,112,111,116,101,110,116,105,97,108,32,109,111,
- 100,117,108,101,115,32,97,110,100,32,112,97,99,107,97,103,
- 101,115,32,102,111,114,32,116,104,105,115,32,100,105,114,101,
- 99,116,111,114,121,46,114,0,0,0,0,114,60,0,0,0,
- 122,5,123,125,46,123,125,99,1,0,0,0,0,0,0,0,
- 2,0,0,0,3,0,0,0,83,0,0,0,115,28,0,0,
- 0,104,0,0,124,0,0,93,18,0,125,1,0,124,1,0,
- 106,0,0,131,0,0,146,2,0,113,6,0,83,114,4,0,
- 0,0,41,1,114,90,0,0,0,41,2,114,24,0,0,0,
- 90,2,102,110,114,4,0,0,0,114,4,0,0,0,114,6,
- 0,0,0,250,9,60,115,101,116,99,111,109,112,62,17,5,
- 0,0,115,2,0,0,0,9,0,122,41,70,105,108,101,70,
+ 101,100,32,109,111,100,117,108,101,46,32,32,82,101,116,117,
+ 114,110,115,32,116,104,101,10,32,32,32,32,32,32,32,32,
+ 109,97,116,99,104,105,110,103,32,115,112,101,99,44,32,111,
+ 114,32,78,111,110,101,32,105,102,32,110,111,116,32,102,111,
+ 117,110,100,46,70,114,60,0,0,0,114,58,0,0,0,114,
+ 31,0,0,0,114,186,0,0,0,122,9,116,114,121,105,110,
+ 103,32,123,125,114,100,0,0,0,78,122,25,112,111,115,115,
+ 105,98,108,101,32,110,97,109,101,115,112,97,99,101,32,102,
+ 111,114,32,123,125,114,89,0,0,0,41,23,114,34,0,0,
+ 0,114,41,0,0,0,114,37,0,0,0,114,3,0,0,0,
+ 114,47,0,0,0,114,220,0,0,0,114,42,0,0,0,114,
+ 9,1,0,0,218,11,95,102,105,108,108,95,99,97,99,104,
+ 101,114,7,0,0,0,114,12,1,0,0,114,90,0,0,0,
+ 114,11,1,0,0,114,30,0,0,0,114,8,1,0,0,114,
+ 46,0,0,0,114,6,1,0,0,114,48,0,0,0,114,107,
+ 0,0,0,114,49,0,0,0,114,123,0,0,0,114,162,0,
+ 0,0,114,158,0,0,0,41,14,114,110,0,0,0,114,128,
+ 0,0,0,114,181,0,0,0,90,12,105,115,95,110,97,109,
+ 101,115,112,97,99,101,90,11,116,97,105,108,95,109,111,100,
+ 117,108,101,114,135,0,0,0,90,5,99,97,99,104,101,90,
+ 12,99,97,99,104,101,95,109,111,100,117,108,101,90,9,98,
+ 97,115,101,95,112,97,116,104,114,226,0,0,0,114,167,0,
+ 0,0,90,13,105,110,105,116,95,102,105,108,101,110,97,109,
+ 101,90,9,102,117,108,108,95,112,97,116,104,114,166,0,0,
+ 0,114,4,0,0,0,114,4,0,0,0,114,6,0,0,0,
+ 114,182,0,0,0,199,4,0,0,115,68,0,0,0,0,3,
+ 6,1,19,1,3,1,34,1,13,1,11,1,15,1,10,1,
+ 9,2,9,1,9,1,15,2,9,1,6,2,12,1,18,1,
+ 22,1,10,1,15,1,12,1,32,4,12,2,22,1,22,1,
+ 25,1,16,1,12,1,29,1,6,1,19,1,18,1,12,1,
+ 4,1,122,20,70,105,108,101,70,105,110,100,101,114,46,102,
+ 105,110,100,95,115,112,101,99,99,1,0,0,0,0,0,0,
+ 0,9,0,0,0,13,0,0,0,67,0,0,0,115,11,1,
+ 0,0,124,0,0,106,0,0,125,1,0,121,31,0,116,1,
+ 0,106,2,0,124,1,0,112,33,0,116,1,0,106,3,0,
+ 131,0,0,131,1,0,125,2,0,87,110,33,0,4,116,4,
+ 0,116,5,0,116,6,0,102,3,0,107,10,0,114,75,0,
+ 1,1,1,103,0,0,125,2,0,89,110,1,0,88,116,7,
+ 0,106,8,0,106,9,0,100,1,0,131,1,0,115,112,0,
+ 116,10,0,124,2,0,131,1,0,124,0,0,95,11,0,110,
+ 111,0,116,10,0,131,0,0,125,3,0,120,90,0,124,2,
+ 0,68,93,82,0,125,4,0,124,4,0,106,12,0,100,2,
+ 0,131,1,0,92,3,0,125,5,0,125,6,0,125,7,0,
+ 124,6,0,114,191,0,100,3,0,106,13,0,124,5,0,124,
+ 7,0,106,14,0,131,0,0,131,2,0,125,8,0,110,6,
+ 0,124,5,0,125,8,0,124,3,0,106,15,0,124,8,0,
+ 131,1,0,1,113,128,0,87,124,3,0,124,0,0,95,11,
+ 0,116,7,0,106,8,0,106,9,0,116,16,0,131,1,0,
+ 114,7,1,100,4,0,100,5,0,132,0,0,124,2,0,68,
+ 131,1,0,124,0,0,95,17,0,100,6,0,83,41,7,122,
+ 68,70,105,108,108,32,116,104,101,32,99,97,99,104,101,32,
+ 111,102,32,112,111,116,101,110,116,105,97,108,32,109,111,100,
+ 117,108,101,115,32,97,110,100,32,112,97,99,107,97,103,101,
+ 115,32,102,111,114,32,116,104,105,115,32,100,105,114,101,99,
+ 116,111,114,121,46,114,0,0,0,0,114,60,0,0,0,122,
+ 5,123,125,46,123,125,99,1,0,0,0,0,0,0,0,2,
+ 0,0,0,3,0,0,0,83,0,0,0,115,28,0,0,0,
+ 104,0,0,124,0,0,93,18,0,125,1,0,124,1,0,106,
+ 0,0,131,0,0,146,2,0,113,6,0,83,114,4,0,0,
+ 0,41,1,114,90,0,0,0,41,2,114,24,0,0,0,90,
+ 2,102,110,114,4,0,0,0,114,4,0,0,0,114,6,0,
+ 0,0,250,9,60,115,101,116,99,111,109,112,62,17,5,0,
+ 0,115,2,0,0,0,9,0,122,41,70,105,108,101,70,105,
+ 110,100,101,114,46,95,102,105,108,108,95,99,97,99,104,101,
+ 46,60,108,111,99,97,108,115,62,46,60,115,101,116,99,111,
+ 109,112,62,78,41,18,114,37,0,0,0,114,3,0,0,0,
+ 90,7,108,105,115,116,100,105,114,114,47,0,0,0,114,1,
+ 1,0,0,218,15,80,101,114,109,105,115,115,105,111,110,69,
+ 114,114,111,114,218,18,78,111,116,65,68,105,114,101,99,116,
+ 111,114,121,69,114,114,111,114,114,8,0,0,0,114,9,0,
+ 0,0,114,10,0,0,0,114,10,1,0,0,114,11,1,0,
+ 0,114,85,0,0,0,114,49,0,0,0,114,90,0,0,0,
+ 218,3,97,100,100,114,11,0,0,0,114,12,1,0,0,41,
+ 9,114,110,0,0,0,114,37,0,0,0,90,8,99,111,110,
+ 116,101,110,116,115,90,21,108,111,119,101,114,95,115,117,102,
+ 102,105,120,95,99,111,110,116,101,110,116,115,114,246,0,0,
+ 0,114,108,0,0,0,114,238,0,0,0,114,226,0,0,0,
+ 90,8,110,101,119,95,110,97,109,101,114,4,0,0,0,114,
+ 4,0,0,0,114,6,0,0,0,114,14,1,0,0,244,4,
+ 0,0,115,34,0,0,0,0,2,9,1,3,1,31,1,22,
+ 3,11,3,18,1,18,7,9,1,13,1,24,1,6,1,27,
+ 2,6,1,17,1,9,1,18,1,122,22,70,105,108,101,70,
105,110,100,101,114,46,95,102,105,108,108,95,99,97,99,104,
- 101,46,60,108,111,99,97,108,115,62,46,60,115,101,116,99,
- 111,109,112,62,78,41,18,114,37,0,0,0,114,3,0,0,
- 0,90,7,108,105,115,116,100,105,114,114,47,0,0,0,114,
- 1,1,0,0,218,15,80,101,114,109,105,115,115,105,111,110,
- 69,114,114,111,114,218,18,78,111,116,65,68,105,114,101,99,
- 116,111,114,121,69,114,114,111,114,114,8,0,0,0,114,9,
- 0,0,0,114,10,0,0,0,114,10,1,0,0,114,11,1,
- 0,0,114,85,0,0,0,114,49,0,0,0,114,90,0,0,
- 0,218,3,97,100,100,114,11,0,0,0,114,12,1,0,0,
- 41,9,114,110,0,0,0,114,37,0,0,0,90,8,99,111,
- 110,116,101,110,116,115,90,21,108,111,119,101,114,95,115,117,
- 102,102,105,120,95,99,111,110,116,101,110,116,115,114,246,0,
- 0,0,114,108,0,0,0,114,238,0,0,0,114,226,0,0,
- 0,90,8,110,101,119,95,110,97,109,101,114,4,0,0,0,
- 114,4,0,0,0,114,6,0,0,0,114,14,1,0,0,244,
- 4,0,0,115,34,0,0,0,0,2,9,1,3,1,31,1,
- 22,3,11,3,18,1,18,7,9,1,13,1,24,1,6,1,
- 27,2,6,1,17,1,9,1,18,1,122,22,70,105,108,101,
- 70,105,110,100,101,114,46,95,102,105,108,108,95,99,97,99,
- 104,101,99,1,0,0,0,0,0,0,0,3,0,0,0,3,
- 0,0,0,7,0,0,0,115,25,0,0,0,135,0,0,135,
- 1,0,102,2,0,100,1,0,100,2,0,134,0,0,125,2,
- 0,124,2,0,83,41,3,97,20,1,0,0,65,32,99,108,
- 97,115,115,32,109,101,116,104,111,100,32,119,104,105,99,104,
- 32,114,101,116,117,114,110,115,32,97,32,99,108,111,115,117,
- 114,101,32,116,111,32,117,115,101,32,111,110,32,115,121,115,
- 46,112,97,116,104,95,104,111,111,107,10,32,32,32,32,32,
- 32,32,32,119,104,105,99,104,32,119,105,108,108,32,114,101,
- 116,117,114,110,32,97,110,32,105,110,115,116,97,110,99,101,
- 32,117,115,105,110,103,32,116,104,101,32,115,112,101,99,105,
- 102,105,101,100,32,108,111,97,100,101,114,115,32,97,110,100,
- 32,116,104,101,32,112,97,116,104,10,32,32,32,32,32,32,
- 32,32,99,97,108,108,101,100,32,111,110,32,116,104,101,32,
- 99,108,111,115,117,114,101,46,10,10,32,32,32,32,32,32,
- 32,32,73,102,32,116,104,101,32,112,97,116,104,32,99,97,
- 108,108,101,100,32,111,110,32,116,104,101,32,99,108,111,115,
- 117,114,101,32,105,115,32,110,111,116,32,97,32,100,105,114,
- 101,99,116,111,114,121,44,32,73,109,112,111,114,116,69,114,
- 114,111,114,32,105,115,10,32,32,32,32,32,32,32,32,114,
- 97,105,115,101,100,46,10,10,32,32,32,32,32,32,32,32,
- 99,1,0,0,0,0,0,0,0,1,0,0,0,4,0,0,
- 0,19,0,0,0,115,43,0,0,0,116,0,0,124,0,0,
- 131,1,0,115,30,0,116,1,0,100,1,0,100,2,0,124,
- 0,0,131,1,1,130,1,0,136,0,0,124,0,0,136,1,
- 0,140,1,0,83,41,3,122,45,80,97,116,104,32,104,111,
- 111,107,32,102,111,114,32,105,109,112,111,114,116,108,105,98,
- 46,109,97,99,104,105,110,101,114,121,46,70,105,108,101,70,
- 105,110,100,101,114,46,122,30,111,110,108,121,32,100,105,114,
- 101,99,116,111,114,105,101,115,32,97,114,101,32,115,117,112,
- 112,111,114,116,101,100,114,37,0,0,0,41,2,114,48,0,
- 0,0,114,109,0,0,0,41,1,114,37,0,0,0,41,2,
- 114,172,0,0,0,114,13,1,0,0,114,4,0,0,0,114,
- 6,0,0,0,218,24,112,97,116,104,95,104,111,111,107,95,
- 102,111,114,95,70,105,108,101,70,105,110,100,101,114,29,5,
- 0,0,115,6,0,0,0,0,2,12,1,18,1,122,54,70,
- 105,108,101,70,105,110,100,101,114,46,112,97,116,104,95,104,
- 111,111,107,46,60,108,111,99,97,108,115,62,46,112,97,116,
- 104,95,104,111,111,107,95,102,111,114,95,70,105,108,101,70,
- 105,110,100,101,114,114,4,0,0,0,41,3,114,172,0,0,
- 0,114,13,1,0,0,114,19,1,0,0,114,4,0,0,0,
- 41,2,114,172,0,0,0,114,13,1,0,0,114,6,0,0,
- 0,218,9,112,97,116,104,95,104,111,111,107,19,5,0,0,
- 115,4,0,0,0,0,10,21,6,122,20,70,105,108,101,70,
- 105,110,100,101,114,46,112,97,116,104,95,104,111,111,107,99,
- 1,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,
- 67,0,0,0,115,16,0,0,0,100,1,0,106,0,0,124,
- 0,0,106,1,0,131,1,0,83,41,2,78,122,16,70,105,
- 108,101,70,105,110,100,101,114,40,123,33,114,125,41,41,2,
- 114,49,0,0,0,114,37,0,0,0,41,1,114,110,0,0,
- 0,114,4,0,0,0,114,4,0,0,0,114,6,0,0,0,
- 114,245,0,0,0,37,5,0,0,115,2,0,0,0,0,1,
- 122,19,70,105,108,101,70,105,110,100,101,114,46,95,95,114,
- 101,112,114,95,95,41,15,114,114,0,0,0,114,113,0,0,
- 0,114,115,0,0,0,114,116,0,0,0,114,186,0,0,0,
- 114,251,0,0,0,114,132,0,0,0,114,183,0,0,0,114,
- 126,0,0,0,114,6,1,0,0,114,182,0,0,0,114,14,
- 1,0,0,114,184,0,0,0,114,20,1,0,0,114,245,0,
- 0,0,114,4,0,0,0,114,4,0,0,0,114,4,0,0,
- 0,114,6,0,0,0,114,7,1,0,0,153,4,0,0,115,
- 20,0,0,0,12,7,6,2,12,14,12,4,6,2,12,12,
- 12,5,15,45,12,31,18,18,114,7,1,0,0,99,4,0,
- 0,0,0,0,0,0,6,0,0,0,11,0,0,0,67,0,
- 0,0,115,195,0,0,0,124,0,0,106,0,0,100,1,0,
- 131,1,0,125,4,0,124,0,0,106,0,0,100,2,0,131,
- 1,0,125,5,0,124,4,0,115,99,0,124,5,0,114,54,
- 0,124,5,0,106,1,0,125,4,0,110,45,0,124,2,0,
- 124,3,0,107,2,0,114,84,0,116,2,0,124,1,0,124,
- 2,0,131,2,0,125,4,0,110,15,0,116,3,0,124,1,
- 0,124,2,0,131,2,0,125,4,0,124,5,0,115,126,0,
- 116,4,0,124,1,0,124,2,0,100,3,0,124,4,0,131,
- 2,1,125,5,0,121,44,0,124,5,0,124,0,0,100,2,
- 0,60,124,4,0,124,0,0,100,1,0,60,124,2,0,124,
- 0,0,100,4,0,60,124,3,0,124,0,0,100,5,0,60,
- 87,110,18,0,4,116,5,0,107,10,0,114,190,0,1,1,
- 1,89,110,1,0,88,100,0,0,83,41,6,78,218,10,95,
- 95,108,111,97,100,101,114,95,95,218,8,95,95,115,112,101,
- 99,95,95,114,129,0,0,0,90,8,95,95,102,105,108,101,
- 95,95,90,10,95,95,99,97,99,104,101,100,95,95,41,6,
- 218,3,103,101,116,114,129,0,0,0,114,224,0,0,0,114,
- 219,0,0,0,114,169,0,0,0,218,9,69,120,99,101,112,
- 116,105,111,110,41,6,90,2,110,115,114,108,0,0,0,90,
- 8,112,97,116,104,110,97,109,101,90,9,99,112,97,116,104,
- 110,97,109,101,114,129,0,0,0,114,166,0,0,0,114,4,
- 0,0,0,114,4,0,0,0,114,6,0,0,0,218,14,95,
- 102,105,120,95,117,112,95,109,111,100,117,108,101,43,5,0,
- 0,115,34,0,0,0,0,2,15,1,15,1,6,1,6,1,
- 12,1,12,1,18,2,15,1,6,1,21,1,3,1,10,1,
- 10,1,10,1,14,1,13,2,114,25,1,0,0,99,0,0,
- 0,0,0,0,0,0,3,0,0,0,3,0,0,0,67,0,
- 0,0,115,55,0,0,0,116,0,0,116,1,0,106,2,0,
- 131,0,0,102,2,0,125,0,0,116,3,0,116,4,0,102,
- 2,0,125,1,0,116,5,0,116,6,0,102,2,0,125,2,
- 0,124,0,0,124,1,0,124,2,0,103,3,0,83,41,1,
- 122,95,82,101,116,117,114,110,115,32,97,32,108,105,115,116,
- 32,111,102,32,102,105,108,101,45,98,97,115,101,100,32,109,
- 111,100,117,108,101,32,108,111,97,100,101,114,115,46,10,10,
- 32,32,32,32,69,97,99,104,32,105,116,101,109,32,105,115,
- 32,97,32,116,117,112,108,101,32,40,108,111,97,100,101,114,
- 44,32,115,117,102,102,105,120,101,115,41,46,10,32,32,32,
- 32,41,7,114,225,0,0,0,114,147,0,0,0,218,18,101,
- 120,116,101,110,115,105,111,110,95,115,117,102,102,105,120,101,
- 115,114,219,0,0,0,114,86,0,0,0,114,224,0,0,0,
- 114,76,0,0,0,41,3,90,10,101,120,116,101,110,115,105,
- 111,110,115,90,6,115,111,117,114,99,101,90,8,98,121,116,
- 101,99,111,100,101,114,4,0,0,0,114,4,0,0,0,114,
- 6,0,0,0,114,163,0,0,0,66,5,0,0,115,8,0,
- 0,0,0,5,18,1,12,1,12,1,114,163,0,0,0,99,
- 1,0,0,0,0,0,0,0,12,0,0,0,12,0,0,0,
- 67,0,0,0,115,70,2,0,0,124,0,0,97,0,0,116,
- 0,0,106,1,0,97,1,0,116,0,0,106,2,0,97,2,
- 0,116,1,0,106,3,0,116,4,0,25,125,1,0,120,76,
- 0,100,26,0,68,93,68,0,125,2,0,124,2,0,116,1,
- 0,106,3,0,107,7,0,114,83,0,116,0,0,106,5,0,
- 124,2,0,131,1,0,125,3,0,110,13,0,116,1,0,106,
- 3,0,124,2,0,25,125,3,0,116,6,0,124,1,0,124,
- 2,0,124,3,0,131,3,0,1,113,44,0,87,100,5,0,
- 100,6,0,103,1,0,102,2,0,100,7,0,100,8,0,100,
- 6,0,103,2,0,102,2,0,102,2,0,125,4,0,120,149,
- 0,124,4,0,68,93,129,0,92,2,0,125,5,0,125,6,
- 0,116,7,0,100,9,0,100,10,0,132,0,0,124,6,0,
- 68,131,1,0,131,1,0,115,199,0,116,8,0,130,1,0,
- 124,6,0,100,11,0,25,125,7,0,124,5,0,116,1,0,
- 106,3,0,107,6,0,114,241,0,116,1,0,106,3,0,124,
- 5,0,25,125,8,0,80,113,156,0,121,20,0,116,0,0,
- 106,5,0,124,5,0,131,1,0,125,8,0,80,87,113,156,
- 0,4,116,9,0,107,10,0,114,28,1,1,1,1,119,156,
- 0,89,113,156,0,88,113,156,0,87,116,9,0,100,12,0,
- 131,1,0,130,1,0,116,6,0,124,1,0,100,13,0,124,
- 8,0,131,3,0,1,116,6,0,124,1,0,100,14,0,124,
- 7,0,131,3,0,1,116,6,0,124,1,0,100,15,0,100,
- 16,0,106,10,0,124,6,0,131,1,0,131,3,0,1,121,
- 19,0,116,0,0,106,5,0,100,17,0,131,1,0,125,9,
- 0,87,110,24,0,4,116,9,0,107,10,0,114,147,1,1,
- 1,1,100,18,0,125,9,0,89,110,1,0,88,116,6,0,
- 124,1,0,100,17,0,124,9,0,131,3,0,1,116,0,0,
- 106,5,0,100,19,0,131,1,0,125,10,0,116,6,0,124,
- 1,0,100,19,0,124,10,0,131,3,0,1,124,5,0,100,
- 7,0,107,2,0,114,238,1,116,0,0,106,5,0,100,20,
- 0,131,1,0,125,11,0,116,6,0,124,1,0,100,21,0,
- 124,11,0,131,3,0,1,116,6,0,124,1,0,100,22,0,
- 116,11,0,131,0,0,131,3,0,1,116,12,0,106,13,0,
- 116,2,0,106,14,0,131,0,0,131,1,0,1,124,5,0,
- 100,7,0,107,2,0,114,66,2,116,15,0,106,16,0,100,
- 23,0,131,1,0,1,100,24,0,116,12,0,107,6,0,114,
- 66,2,100,25,0,116,17,0,95,18,0,100,18,0,83,41,
- 27,122,205,83,101,116,117,112,32,116,104,101,32,112,97,116,
- 104,45,98,97,115,101,100,32,105,109,112,111,114,116,101,114,
- 115,32,102,111,114,32,105,109,112,111,114,116,108,105,98,32,
- 98,121,32,105,109,112,111,114,116,105,110,103,32,110,101,101,
- 100,101,100,10,32,32,32,32,98,117,105,108,116,45,105,110,
- 32,109,111,100,117,108,101,115,32,97,110,100,32,105,110,106,
- 101,99,116,105,110,103,32,116,104,101,109,32,105,110,116,111,
- 32,116,104,101,32,103,108,111,98,97,108,32,110,97,109,101,
- 115,112,97,99,101,46,10,10,32,32,32,32,79,116,104,101,
- 114,32,99,111,109,112,111,110,101,110,116,115,32,97,114,101,
- 32,101,120,116,114,97,99,116,101,100,32,102,114,111,109,32,
- 116,104,101,32,99,111,114,101,32,98,111,111,116,115,116,114,
- 97,112,32,109,111,100,117,108,101,46,10,10,32,32,32,32,
- 114,51,0,0,0,114,62,0,0,0,218,8,98,117,105,108,
- 116,105,110,115,114,144,0,0,0,90,5,112,111,115,105,120,
- 250,1,47,218,2,110,116,250,1,92,99,1,0,0,0,0,
- 0,0,0,2,0,0,0,3,0,0,0,115,0,0,0,115,
- 33,0,0,0,124,0,0,93,23,0,125,1,0,116,0,0,
- 124,1,0,131,1,0,100,0,0,107,2,0,86,1,113,3,
- 0,100,1,0,83,41,2,114,31,0,0,0,78,41,1,114,
- 33,0,0,0,41,2,114,24,0,0,0,114,79,0,0,0,
+ 101,99,1,0,0,0,0,0,0,0,3,0,0,0,3,0,
+ 0,0,7,0,0,0,115,25,0,0,0,135,0,0,135,1,
+ 0,102,2,0,100,1,0,100,2,0,134,0,0,125,2,0,
+ 124,2,0,83,41,3,97,20,1,0,0,65,32,99,108,97,
+ 115,115,32,109,101,116,104,111,100,32,119,104,105,99,104,32,
+ 114,101,116,117,114,110,115,32,97,32,99,108,111,115,117,114,
+ 101,32,116,111,32,117,115,101,32,111,110,32,115,121,115,46,
+ 112,97,116,104,95,104,111,111,107,10,32,32,32,32,32,32,
+ 32,32,119,104,105,99,104,32,119,105,108,108,32,114,101,116,
+ 117,114,110,32,97,110,32,105,110,115,116,97,110,99,101,32,
+ 117,115,105,110,103,32,116,104,101,32,115,112,101,99,105,102,
+ 105,101,100,32,108,111,97,100,101,114,115,32,97,110,100,32,
+ 116,104,101,32,112,97,116,104,10,32,32,32,32,32,32,32,
+ 32,99,97,108,108,101,100,32,111,110,32,116,104,101,32,99,
+ 108,111,115,117,114,101,46,10,10,32,32,32,32,32,32,32,
+ 32,73,102,32,116,104,101,32,112,97,116,104,32,99,97,108,
+ 108,101,100,32,111,110,32,116,104,101,32,99,108,111,115,117,
+ 114,101,32,105,115,32,110,111,116,32,97,32,100,105,114,101,
+ 99,116,111,114,121,44,32,73,109,112,111,114,116,69,114,114,
+ 111,114,32,105,115,10,32,32,32,32,32,32,32,32,114,97,
+ 105,115,101,100,46,10,10,32,32,32,32,32,32,32,32,99,
+ 1,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,
+ 19,0,0,0,115,43,0,0,0,116,0,0,124,0,0,131,
+ 1,0,115,30,0,116,1,0,100,1,0,100,2,0,124,0,
+ 0,131,1,1,130,1,0,136,0,0,124,0,0,136,1,0,
+ 140,1,0,83,41,3,122,45,80,97,116,104,32,104,111,111,
+ 107,32,102,111,114,32,105,109,112,111,114,116,108,105,98,46,
+ 109,97,99,104,105,110,101,114,121,46,70,105,108,101,70,105,
+ 110,100,101,114,46,122,30,111,110,108,121,32,100,105,114,101,
+ 99,116,111,114,105,101,115,32,97,114,101,32,115,117,112,112,
+ 111,114,116,101,100,114,37,0,0,0,41,2,114,48,0,0,
+ 0,114,109,0,0,0,41,1,114,37,0,0,0,41,2,114,
+ 172,0,0,0,114,13,1,0,0,114,4,0,0,0,114,6,
+ 0,0,0,218,24,112,97,116,104,95,104,111,111,107,95,102,
+ 111,114,95,70,105,108,101,70,105,110,100,101,114,29,5,0,
+ 0,115,6,0,0,0,0,2,12,1,18,1,122,54,70,105,
+ 108,101,70,105,110,100,101,114,46,112,97,116,104,95,104,111,
+ 111,107,46,60,108,111,99,97,108,115,62,46,112,97,116,104,
+ 95,104,111,111,107,95,102,111,114,95,70,105,108,101,70,105,
+ 110,100,101,114,114,4,0,0,0,41,3,114,172,0,0,0,
+ 114,13,1,0,0,114,19,1,0,0,114,4,0,0,0,41,
+ 2,114,172,0,0,0,114,13,1,0,0,114,6,0,0,0,
+ 218,9,112,97,116,104,95,104,111,111,107,19,5,0,0,115,
+ 4,0,0,0,0,10,21,6,122,20,70,105,108,101,70,105,
+ 110,100,101,114,46,112,97,116,104,95,104,111,111,107,99,1,
+ 0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,67,
+ 0,0,0,115,16,0,0,0,100,1,0,106,0,0,124,0,
+ 0,106,1,0,131,1,0,83,41,2,78,122,16,70,105,108,
+ 101,70,105,110,100,101,114,40,123,33,114,125,41,41,2,114,
+ 49,0,0,0,114,37,0,0,0,41,1,114,110,0,0,0,
114,4,0,0,0,114,4,0,0,0,114,6,0,0,0,114,
- 228,0,0,0,102,5,0,0,115,2,0,0,0,6,0,122,
- 25,95,115,101,116,117,112,46,60,108,111,99,97,108,115,62,
- 46,60,103,101,110,101,120,112,114,62,114,61,0,0,0,122,
- 30,105,109,112,111,114,116,108,105,98,32,114,101,113,117,105,
- 114,101,115,32,112,111,115,105,120,32,111,114,32,110,116,114,
- 3,0,0,0,114,27,0,0,0,114,23,0,0,0,114,32,
- 0,0,0,90,7,95,116,104,114,101,97,100,78,90,8,95,
- 119,101,97,107,114,101,102,90,6,119,105,110,114,101,103,114,
- 171,0,0,0,114,7,0,0,0,122,4,46,112,121,119,122,
- 6,95,100,46,112,121,100,84,41,4,122,3,95,105,111,122,
- 9,95,119,97,114,110,105,110,103,115,122,8,98,117,105,108,
- 116,105,110,115,122,7,109,97,114,115,104,97,108,41,19,114,
+ 245,0,0,0,37,5,0,0,115,2,0,0,0,0,1,122,
+ 19,70,105,108,101,70,105,110,100,101,114,46,95,95,114,101,
+ 112,114,95,95,41,15,114,114,0,0,0,114,113,0,0,0,
+ 114,115,0,0,0,114,116,0,0,0,114,186,0,0,0,114,
+ 251,0,0,0,114,132,0,0,0,114,183,0,0,0,114,126,
+ 0,0,0,114,6,1,0,0,114,182,0,0,0,114,14,1,
+ 0,0,114,184,0,0,0,114,20,1,0,0,114,245,0,0,
+ 0,114,4,0,0,0,114,4,0,0,0,114,4,0,0,0,
+ 114,6,0,0,0,114,7,1,0,0,153,4,0,0,115,20,
+ 0,0,0,12,7,6,2,12,14,12,4,6,2,12,12,12,
+ 5,15,45,12,31,18,18,114,7,1,0,0,99,4,0,0,
+ 0,0,0,0,0,6,0,0,0,11,0,0,0,67,0,0,
+ 0,115,195,0,0,0,124,0,0,106,0,0,100,1,0,131,
+ 1,0,125,4,0,124,0,0,106,0,0,100,2,0,131,1,
+ 0,125,5,0,124,4,0,115,99,0,124,5,0,114,54,0,
+ 124,5,0,106,1,0,125,4,0,110,45,0,124,2,0,124,
+ 3,0,107,2,0,114,84,0,116,2,0,124,1,0,124,2,
+ 0,131,2,0,125,4,0,110,15,0,116,3,0,124,1,0,
+ 124,2,0,131,2,0,125,4,0,124,5,0,115,126,0,116,
+ 4,0,124,1,0,124,2,0,100,3,0,124,4,0,131,2,
+ 1,125,5,0,121,44,0,124,5,0,124,0,0,100,2,0,
+ 60,124,4,0,124,0,0,100,1,0,60,124,2,0,124,0,
+ 0,100,4,0,60,124,3,0,124,0,0,100,5,0,60,87,
+ 110,18,0,4,116,5,0,107,10,0,114,190,0,1,1,1,
+ 89,110,1,0,88,100,0,0,83,41,6,78,218,10,95,95,
+ 108,111,97,100,101,114,95,95,218,8,95,95,115,112,101,99,
+ 95,95,114,129,0,0,0,90,8,95,95,102,105,108,101,95,
+ 95,90,10,95,95,99,97,99,104,101,100,95,95,41,6,218,
+ 3,103,101,116,114,129,0,0,0,114,224,0,0,0,114,219,
+ 0,0,0,114,169,0,0,0,218,9,69,120,99,101,112,116,
+ 105,111,110,41,6,90,2,110,115,114,108,0,0,0,90,8,
+ 112,97,116,104,110,97,109,101,90,9,99,112,97,116,104,110,
+ 97,109,101,114,129,0,0,0,114,166,0,0,0,114,4,0,
+ 0,0,114,4,0,0,0,114,6,0,0,0,218,14,95,102,
+ 105,120,95,117,112,95,109,111,100,117,108,101,43,5,0,0,
+ 115,34,0,0,0,0,2,15,1,15,1,6,1,6,1,12,
+ 1,12,1,18,2,15,1,6,1,21,1,3,1,10,1,10,
+ 1,10,1,14,1,13,2,114,25,1,0,0,99,0,0,0,
+ 0,0,0,0,0,3,0,0,0,3,0,0,0,67,0,0,
+ 0,115,55,0,0,0,116,0,0,116,1,0,106,2,0,131,
+ 0,0,102,2,0,125,0,0,116,3,0,116,4,0,102,2,
+ 0,125,1,0,116,5,0,116,6,0,102,2,0,125,2,0,
+ 124,0,0,124,1,0,124,2,0,103,3,0,83,41,1,122,
+ 95,82,101,116,117,114,110,115,32,97,32,108,105,115,116,32,
+ 111,102,32,102,105,108,101,45,98,97,115,101,100,32,109,111,
+ 100,117,108,101,32,108,111,97,100,101,114,115,46,10,10,32,
+ 32,32,32,69,97,99,104,32,105,116,101,109,32,105,115,32,
+ 97,32,116,117,112,108,101,32,40,108,111,97,100,101,114,44,
+ 32,115,117,102,102,105,120,101,115,41,46,10,32,32,32,32,
+ 41,7,114,225,0,0,0,114,147,0,0,0,218,18,101,120,
+ 116,101,110,115,105,111,110,95,115,117,102,102,105,120,101,115,
+ 114,219,0,0,0,114,86,0,0,0,114,224,0,0,0,114,
+ 76,0,0,0,41,3,90,10,101,120,116,101,110,115,105,111,
+ 110,115,90,6,115,111,117,114,99,101,90,8,98,121,116,101,
+ 99,111,100,101,114,4,0,0,0,114,4,0,0,0,114,6,
+ 0,0,0,114,163,0,0,0,66,5,0,0,115,8,0,0,
+ 0,0,5,18,1,12,1,12,1,114,163,0,0,0,99,1,
+ 0,0,0,0,0,0,0,12,0,0,0,12,0,0,0,67,
+ 0,0,0,115,70,2,0,0,124,0,0,97,0,0,116,0,
+ 0,106,1,0,97,1,0,116,0,0,106,2,0,97,2,0,
+ 116,1,0,106,3,0,116,4,0,25,125,1,0,120,76,0,
+ 100,26,0,68,93,68,0,125,2,0,124,2,0,116,1,0,
+ 106,3,0,107,7,0,114,83,0,116,0,0,106,5,0,124,
+ 2,0,131,1,0,125,3,0,110,13,0,116,1,0,106,3,
+ 0,124,2,0,25,125,3,0,116,6,0,124,1,0,124,2,
+ 0,124,3,0,131,3,0,1,113,44,0,87,100,5,0,100,
+ 6,0,103,1,0,102,2,0,100,7,0,100,8,0,100,6,
+ 0,103,2,0,102,2,0,102,2,0,125,4,0,120,149,0,
+ 124,4,0,68,93,129,0,92,2,0,125,5,0,125,6,0,
+ 116,7,0,100,9,0,100,10,0,132,0,0,124,6,0,68,
+ 131,1,0,131,1,0,115,199,0,116,8,0,130,1,0,124,
+ 6,0,100,11,0,25,125,7,0,124,5,0,116,1,0,106,
+ 3,0,107,6,0,114,241,0,116,1,0,106,3,0,124,5,
+ 0,25,125,8,0,80,113,156,0,121,20,0,116,0,0,106,
+ 5,0,124,5,0,131,1,0,125,8,0,80,87,113,156,0,
+ 4,116,9,0,107,10,0,114,28,1,1,1,1,119,156,0,
+ 89,113,156,0,88,113,156,0,87,116,9,0,100,12,0,131,
+ 1,0,130,1,0,116,6,0,124,1,0,100,13,0,124,8,
+ 0,131,3,0,1,116,6,0,124,1,0,100,14,0,124,7,
+ 0,131,3,0,1,116,6,0,124,1,0,100,15,0,100,16,
+ 0,106,10,0,124,6,0,131,1,0,131,3,0,1,121,19,
+ 0,116,0,0,106,5,0,100,17,0,131,1,0,125,9,0,
+ 87,110,24,0,4,116,9,0,107,10,0,114,147,1,1,1,
+ 1,100,18,0,125,9,0,89,110,1,0,88,116,6,0,124,
+ 1,0,100,17,0,124,9,0,131,3,0,1,116,0,0,106,
+ 5,0,100,19,0,131,1,0,125,10,0,116,6,0,124,1,
+ 0,100,19,0,124,10,0,131,3,0,1,124,5,0,100,7,
+ 0,107,2,0,114,238,1,116,0,0,106,5,0,100,20,0,
+ 131,1,0,125,11,0,116,6,0,124,1,0,100,21,0,124,
+ 11,0,131,3,0,1,116,6,0,124,1,0,100,22,0,116,
+ 11,0,131,0,0,131,3,0,1,116,12,0,106,13,0,116,
+ 2,0,106,14,0,131,0,0,131,1,0,1,124,5,0,100,
+ 7,0,107,2,0,114,66,2,116,15,0,106,16,0,100,23,
+ 0,131,1,0,1,100,24,0,116,12,0,107,6,0,114,66,
+ 2,100,25,0,116,17,0,95,18,0,100,18,0,83,41,27,
+ 122,205,83,101,116,117,112,32,116,104,101,32,112,97,116,104,
+ 45,98,97,115,101,100,32,105,109,112,111,114,116,101,114,115,
+ 32,102,111,114,32,105,109,112,111,114,116,108,105,98,32,98,
+ 121,32,105,109,112,111,114,116,105,110,103,32,110,101,101,100,
+ 101,100,10,32,32,32,32,98,117,105,108,116,45,105,110,32,
+ 109,111,100,117,108,101,115,32,97,110,100,32,105,110,106,101,
+ 99,116,105,110,103,32,116,104,101,109,32,105,110,116,111,32,
+ 116,104,101,32,103,108,111,98,97,108,32,110,97,109,101,115,
+ 112,97,99,101,46,10,10,32,32,32,32,79,116,104,101,114,
+ 32,99,111,109,112,111,110,101,110,116,115,32,97,114,101,32,
+ 101,120,116,114,97,99,116,101,100,32,102,114,111,109,32,116,
+ 104,101,32,99,111,114,101,32,98,111,111,116,115,116,114,97,
+ 112,32,109,111,100,117,108,101,46,10,10,32,32,32,32,114,
+ 51,0,0,0,114,62,0,0,0,218,8,98,117,105,108,116,
+ 105,110,115,114,144,0,0,0,90,5,112,111,115,105,120,250,
+ 1,47,218,2,110,116,250,1,92,99,1,0,0,0,0,0,
+ 0,0,2,0,0,0,3,0,0,0,115,0,0,0,115,33,
+ 0,0,0,124,0,0,93,23,0,125,1,0,116,0,0,124,
+ 1,0,131,1,0,100,0,0,107,2,0,86,1,113,3,0,
+ 100,1,0,83,41,2,114,31,0,0,0,78,41,1,114,33,
+ 0,0,0,41,2,114,24,0,0,0,114,79,0,0,0,114,
+ 4,0,0,0,114,4,0,0,0,114,6,0,0,0,114,228,
+ 0,0,0,102,5,0,0,115,2,0,0,0,6,0,122,25,
+ 95,115,101,116,117,112,46,60,108,111,99,97,108,115,62,46,
+ 60,103,101,110,101,120,112,114,62,114,61,0,0,0,122,30,
+ 105,109,112,111,114,116,108,105,98,32,114,101,113,117,105,114,
+ 101,115,32,112,111,115,105,120,32,111,114,32,110,116,114,3,
+ 0,0,0,114,27,0,0,0,114,23,0,0,0,114,32,0,
+ 0,0,90,7,95,116,104,114,101,97,100,78,90,8,95,119,
+ 101,97,107,114,101,102,90,6,119,105,110,114,101,103,114,171,
+ 0,0,0,114,7,0,0,0,122,4,46,112,121,119,122,6,
+ 95,100,46,112,121,100,84,41,4,114,51,0,0,0,114,62,
+ 0,0,0,114,27,1,0,0,114,144,0,0,0,41,19,114,
123,0,0,0,114,8,0,0,0,114,147,0,0,0,114,240,
0,0,0,114,114,0,0,0,90,18,95,98,117,105,108,116,
105,110,95,102,114,111,109,95,110,97,109,101,114,118,0,0,
@@ -2567,8 +2566,8 @@
101,114,115,114,4,0,0,0,114,4,0,0,0,114,6,0,
0,0,218,8,95,105,110,115,116,97,108,108,145,5,0,0,
115,16,0,0,0,0,2,10,1,9,1,28,1,15,1,16,
- 1,16,4,9,1,114,36,1,0,0,41,1,122,3,119,105,
- 110,41,2,114,1,0,0,0,114,2,0,0,0,41,59,114,
+ 1,16,4,9,1,114,36,1,0,0,41,1,114,0,0,0,
+ 0,41,2,114,1,0,0,0,114,2,0,0,0,41,59,114,
116,0,0,0,114,12,0,0,0,90,37,95,67,65,83,69,
95,73,78,83,69,78,83,73,84,73,86,69,95,80,76,65,
84,70,79,82,77,83,95,66,89,84,69,83,95,75,69,89,
--
Repository URL: https://hg.python.org/cpython
1
0
cpython (3.5): Issue #25488: Stpp idle.py from adding a entry when it is a duplicate.
by terry.reedy Sept. 30, 2016
by terry.reedy Sept. 30, 2016
Sept. 30, 2016
https://hg.python.org/cpython/rev/013956a801e4
changeset: 104172:013956a801e4
branch: 3.5
parent: 104168:b5705456d9da
user: Terry Jan Reedy <tjreedy(a)udel.edu>
date: Fri Sep 30 02:53:44 2016 -0400
summary:
Issue #25488: Stpp idle.py from adding a entry when it is a duplicate.
Also, make idlelib.idle.main() work after import idlelib.idle.
files:
Lib/idlelib/idle.py | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/Lib/idlelib/idle.py b/Lib/idlelib/idle.py
--- a/Lib/idlelib/idle.py
+++ b/Lib/idlelib/idle.py
@@ -1,11 +1,13 @@
import os.path
import sys
-# If we are working on a development version of IDLE, we need to prepend the
-# parent of this idlelib dir to sys.path. Otherwise, importing idlelib gets
-# the version installed with the Python used to call this module:
+# Enable running IDLE with idlelib in a non-standard location.
+# This was once used to run development versions of IDLE.
+# Because PEP 434 declared idle.py a public interface,
+# removal should require deprecation.
idlelib_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
-sys.path.insert(0, idlelib_dir)
+if idlelib_dir not in sys.path:
+ sys.path.insert(0, idlelib_dir)
-import idlelib.PyShell
-idlelib.PyShell.main()
+from idlelib.PyShell import main # This is subject to change
+main()
--
Repository URL: https://hg.python.org/cpython
1
0
Sept. 30, 2016
https://hg.python.org/cpython/rev/25ae49903496
changeset: 104173:25ae49903496
branch: 3.6
parent: 104169:454af5880b40
parent: 104172:013956a801e4
user: Terry Jan Reedy <tjreedy(a)udel.edu>
date: Fri Sep 30 02:56:46 2016 -0400
summary:
Issue #25488: merge idle.py from 3.5.
files:
Lib/idlelib/idle.py | 15 +++++++++------
1 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/Lib/idlelib/idle.py b/Lib/idlelib/idle.py
--- a/Lib/idlelib/idle.py
+++ b/Lib/idlelib/idle.py
@@ -1,11 +1,14 @@
import os.path
import sys
-# If we are working on a development version of IDLE, we need to prepend the
-# parent of this idlelib dir to sys.path. Otherwise, importing idlelib gets
-# the version installed with the Python used to call this module:
+
+# Enable running IDLE with idlelib in a non-standard location.
+# This was once used to run development versions of IDLE.
+# Because PEP 434 declared idle.py a public interface,
+# removal should require deprecation.
idlelib_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
-sys.path.insert(0, idlelib_dir)
+if idlelib_dir not in sys.path:
+ sys.path.insert(0, idlelib_dir)
-import idlelib.pyshell
-idlelib.pyshell.main()
+from idlelib.pyshell import main # This is subject to change
+main()
--
Repository URL: https://hg.python.org/cpython
1
0
cpython (2.7): Issue #25488: Stpp idle.py from adding a entry when it is a duplicate.
by terry.reedy Sept. 30, 2016
by terry.reedy Sept. 30, 2016
Sept. 30, 2016
https://hg.python.org/cpython/rev/5f788ad057ca
changeset: 104171:5f788ad057ca
branch: 2.7
parent: 104167:f256bd5b8418
user: Terry Jan Reedy <tjreedy(a)udel.edu>
date: Fri Sep 30 02:53:33 2016 -0400
summary:
Issue #25488: Stpp idle.py from adding a entry when it is a duplicate.
Also, make idlelib.idle.main() work after import idlelib.idle.
files:
Lib/idlelib/idle.py | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/Lib/idlelib/idle.py b/Lib/idlelib/idle.py
--- a/Lib/idlelib/idle.py
+++ b/Lib/idlelib/idle.py
@@ -1,11 +1,13 @@
import os.path
import sys
-# If we are working on a development version of IDLE, we need to prepend the
-# parent of this idlelib dir to sys.path. Otherwise, importing idlelib gets
-# the version installed with the Python used to call this module:
+# Enable running IDLE with idlelib in a non-standard location.
+# This was once used to run development versions of IDLE.
+# Because PEP 434 declared idle.py a public interface,
+# removal should require deprecation.
idlelib_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
-sys.path.insert(0, idlelib_dir)
+if idlelib_dir not in sys.path:
+ sys.path.insert(0, idlelib_dir)
-import idlelib.PyShell
-idlelib.PyShell.main()
+from idlelib.PyShell import main # This is subject to change
+main()
--
Repository URL: https://hg.python.org/cpython
1
0
https://hg.python.org/cpython/rev/f17341773c76
changeset: 104174:f17341773c76
parent: 104170:73ee3b73ce66
parent: 104173:25ae49903496
user: Terry Jan Reedy <tjreedy(a)udel.edu>
date: Fri Sep 30 02:57:01 2016 -0400
summary:
Merge with 3.6
files:
Lib/idlelib/idle.py | 15 +++++++++------
1 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/Lib/idlelib/idle.py b/Lib/idlelib/idle.py
--- a/Lib/idlelib/idle.py
+++ b/Lib/idlelib/idle.py
@@ -1,11 +1,14 @@
import os.path
import sys
-# If we are working on a development version of IDLE, we need to prepend the
-# parent of this idlelib dir to sys.path. Otherwise, importing idlelib gets
-# the version installed with the Python used to call this module:
+
+# Enable running IDLE with idlelib in a non-standard location.
+# This was once used to run development versions of IDLE.
+# Because PEP 434 declared idle.py a public interface,
+# removal should require deprecation.
idlelib_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
-sys.path.insert(0, idlelib_dir)
+if idlelib_dir not in sys.path:
+ sys.path.insert(0, idlelib_dir)
-import idlelib.pyshell
-idlelib.pyshell.main()
+from idlelib.pyshell import main # This is subject to change
+main()
--
Repository URL: https://hg.python.org/cpython
1
0
cpython (merge 3.5 -> 3.6): Move idlelib/NEWS.txt entries for 2.x into a separate file -- NEWS2x.txt.
by terry.reedy Sept. 30, 2016
by terry.reedy Sept. 30, 2016
Sept. 30, 2016
https://hg.python.org/cpython/rev/454af5880b40
changeset: 104169:454af5880b40
branch: 3.6
parent: 104165:d1214c0dab49
parent: 104168:b5705456d9da
user: Terry Jan Reedy <tjreedy(a)udel.edu>
date: Fri Sep 30 00:02:28 2016 -0400
summary:
Move idlelib/NEWS.txt entries for 2.x into a separate file -- NEWS2x.txt.
Reformat a few early 3.x entries in HEWS.txt. Merge from 3.5.
files:
Lib/idlelib/NEWS.txt | 686 +----------------------------
Lib/idlelib/NEWS2x.txt | 660 +++++++++++++++++++++++++++
2 files changed, 669 insertions(+), 677 deletions(-)
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt
--- a/Lib/idlelib/NEWS.txt
+++ b/Lib/idlelib/NEWS.txt
@@ -383,7 +383,7 @@
- Issue # 12510: Attempt to get certain tool tips no longer crashes IDLE.
Erroneous tool tips have been corrected. Default added for callables.
-- Issue10365: File open dialog now works instead of crashing even when
+- Issue #10365: File open dialog now works instead of crashing even when
parent window is closed while dialog is open.
- Issue 14876: use user-selected font for highlight configuration.
@@ -419,23 +419,18 @@
- Issue #1028: Ctrl-space binding to show completions was causing IDLE to exit.
Tk < 8.5 was sending invalid Unicode null; replaced with valid null.
-- <Home> toggle failing on Tk 8.5, causing IDLE exits and strange selection
- behavior. Issue 4676. Improve selection extension behaviour.
+- Issue #4676: <Home> toggle failing on Tk 8.5, causing IDLE exits and strange selection
+ behavior. Improve selection extension behaviour.
-- <Home> toggle non-functional when NumLock set on Windows. Issue 3851.
+- Issue #3851: <Home> toggle non-functional when NumLock set on Windows.
What's New in IDLE 3.1b1?
=========================
*Release date: 06-May-09*
-- Use of 'filter' in keybindingDialog.py was causing custom key assignment to
- fail. Patch 5707 amaury.forgeotdarc.
-
-
-What's New in IDLE 3.1a1?
-=========================
-*Release date: 07-Mar-09*
+- Issue #5707: Use of 'filter' in keybindingDialog.py was causing custom key assignment to
+ fail. Patch by Amaury Forgeot d'Arc.
- Issue #4815: Offer conversion to UTF-8 if source files have
no encoding declaration and are not encoded in UTF-8.
@@ -450,669 +445,6 @@
- Issue #2665: On Windows, an IDLE installation upgraded from an old version
would not start if a custom theme was defined.
-
-What's New in IDLE 2.7? (UNRELEASED, but merged into 3.1 releases above.)
-=======================
-*Release date: XX-XXX-2010*
-
-- idle.py modified and simplified to better support developing experimental
- versions of IDLE which are not installed in the standard location.
-
-- OutputWindow/PyShell right click menu "Go to file/line" wasn't working with
- file paths containing spaces. Bug 5559.
-
-- Windows: Version string for the .chm help file changed, file not being
- accessed Patch 5783 Guilherme Polo
-
-- Allow multiple IDLE GUI/subprocess pairs to exist simultaneously. Thanks to
- David Scherer for suggesting the use of an ephemeral port for the GUI.
- Patch 1529142 Weeble.
-
-- Remove port spec from run.py and fix bug where subprocess fails to
- extract port from command line when warnings are present.
-
-- Tk 8.5 Text widget requires 'wordprocessor' tabstyle attr to handle
- mixed space/tab properly. Issue 5129, patch by Guilherme Polo.
-
-- Issue #3549: On MacOS the preferences menu was not present
-
-
-What's New in IDLE 3.0?
-=======================
-*Release date: 03-Dec-2008*
-
-- IDLE would print a "Unhandled server exception!" message when internal
- debugging is enabled.
-
-- Issue #4455: IDLE failed to display the windows list when two windows have
- the same title.
-
-- Issue #4383: When IDLE cannot make the connection to its subprocess, it would
- fail to properly display the error message.
-
-- help() was not paging to the shell. Issue1650.
-
-- CodeContext was not importing.
-
-- Corrected two 3.0 compatibility errors reported by Mark Summerfield:
- http://mail.python.org/pipermail/python-3000/2007-December/011491.html
-
-- Shell was not colorizing due to bug introduced at r57998, Bug 1586.
-
-- Issue #1585: IDLE uses non-existent xrange() function.
-
-- Windows EOL sequence not converted correctly, encoding error.
- Caused file save to fail. Bug 1130.
-
-- IDLE converted to Python 3000 syntax.
-
-- Strings became Unicode.
-
-- CallTips module now uses the inspect module to produce the argspec.
-
-- IDLE modules now use absolute import instead of implied relative import.
-
-- atexit call replaces sys.exitfunc. The functionality of delete-exitfunc flag
- in config-main.cfg remains unchanged: if set, registered exit functions will
- be cleared before IDLE exits.
-
-
-What's New in IDLE 2.6
-======================
-*Release date: 01-Oct-2008*, merged into 3.0 releases detailed above (3.0rc2)
-
-- Issue #2665: On Windows, an IDLE installation upgraded from an old version
- would not start if a custom theme was defined.
-
-- Home / Control-A toggles between left margin and end of leading white
- space. issue1196903, patch by Jeff Shute.
-
-- Improved AutoCompleteWindow logic. issue2062, patch by Tal Einat.
-
-- Autocompletion of filenames now support alternate separators, e.g. the
- '/' char on Windows. issue2061 Patch by Tal Einat.
-
-- Configured selection highlighting colors were ignored; updating highlighting
- in the config dialog would cause non-Python files to be colored as if they
- were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat.
-
-- ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat
-
-- There was an error on exit if no sys.exitfunc was defined. Issue 1647.
-
-- Could not open files in .idlerc directory if latter was hidden on Windows.
- Issue 1743, Issue 1862.
-
-- Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat.
-
-- tabpage.py updated: tabbedPages.py now supports multiple dynamic rows
- of tabs. Patch 1612746 Tal Einat.
-
-- Add confirmation dialog before printing. Patch 1717170 Tal Einat.
-
-- Show paste position if > 80 col. Patch 1659326 Tal Einat.
-
-- Update cursor color without restarting. Patch 1725576 Tal Einat.
-
-- Allow keyboard interrupt only when user code is executing in subprocess.
- Patch 1225 Tal Einat (reworked from IDLE-Spoon).
-
-- configDialog cleanup. Patch 1730217 Tal Einat.
-
-- textView cleanup. Patch 1718043 Tal Einat.
-
-- Clean up EditorWindow close.
-
-- Patch 1693258: Fix for duplicate "preferences" menu-OS X. Backport of r56204.
-
-- OSX: Avoid crash for those versions of Tcl/Tk which don't have a console
-
-- Bug in idlelib.MultiCall: Options dialog was crashing IDLE if there was an
- option in config-extensions w/o a value. Patch #1672481, Tal Einat
-
-- Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;
- mouse and cursor selection in ACWindow implemented; double Tab inserts
- current selection and closes ACW (similar to double-click and Return); scroll
- wheel now works in ACW. Added AutoComplete instructions to IDLE Help.
-
-- AutoCompleteWindow moved below input line, will move above if there
- isn't enough space. Patch 1621265 Tal Einat
-
-- Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
- Suggested solution by Christos Georgiou, Bug 791968.
-
-- Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
-
-- Avoid hang when encountering a duplicate in a completion list. Bug 1571112.
-
-- Patch #1362975: Rework CodeContext indentation algorithm to
- avoid hard-coding pixel widths.
-
-- Bug #813342: Start the IDLE subprocess with -Qnew if the parent
- is started with that option.
-
-- Honor the "Cancel" action in the save dialog (Debian bug #299092)
-
-- Some syntax errors were being caught by tokenize during the tabnanny
- check, resulting in obscure error messages. Do the syntax check
- first. Bug 1562716, 1562719
-
-- IDLE's version number takes a big jump to match the version number of
- the Python release of which it's a part.
-
-
-What's New in IDLE 1.2?
-=======================
-*Release date: 19-SEP-2006*
-
-- File menu hotkeys: there were three 'p' assignments. Reassign the
- 'Save Copy As' and 'Print' hotkeys to 'y' and 't'. Change the
- Shell hotkey from 's' to 'l'.
-
-- IDLE honors new quit() and exit() commands from site.py Quitter() object.
- Patch 1540892, Jim Jewett
-
-- The 'with' statement is now a Code Context block opener.
- Patch 1540851, Jim Jewett
-
-- Retrieval of previous shell command was not always preserving indentation
- (since 1.2a1) Patch 1528468 Tal Einat.
-
-- Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1)
-
-- ToggleTab dialog was setting indent to 8 even if cancelled (since 1.2a1).
-
-- When used w/o subprocess, all exceptions were preceded by an error
- message claiming they were IDLE internal errors (since 1.2a1).
-
-- Bug #1525817: Don't truncate short lines in IDLE's tool tips.
-
-- Bug #1517990: IDLE keybindings on MacOS X now work correctly
-
-- Bug #1517996: IDLE now longer shows the default Tk menu when a
- path browser, class browser or debugger is the frontmost window on MacOS X
-
-- EditorWindow.test() was failing. Bug 1417598
-
-- EditorWindow failed when used stand-alone if sys.ps1 not set.
- Bug 1010370 Dave Florek
-
-- Tooltips failed on new-syle class __init__ args. Bug 1027566 Loren Guthrie
-
-- Avoid occasional failure to detect closing paren properly.
- Patch 1407280 Tal Einat
-
-- Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168.
-
-- Colorizer now handles #<builtin> correctly, also unicode strings and
- 'as' keyword in comment directly following import command. Closes 1325071.
- Patch 1479219 Tal Einat
-
-- Patch #1162825: Support non-ASCII characters in IDLE window titles.
-
-- Source file f.flush() after writing; trying to avoid lossage if user
- kills GUI.
-
-- Options / Keys / Advanced dialog made functional. Also, allow binding
- of 'movement' keys.
-
-- 'syntax' patch adds improved calltips and a new class attribute listbox.
- MultiCall module allows binding multiple actions to an event.
- Patch 906702 Noam Raphael
-
-- Better indentation after first line of string continuation.
- IDLEfork Patch 681992, Noam Raphael
-
-- Fixed CodeContext alignment problem, following suggestion from Tal Einat.
-
-- Increased performance in CodeContext extension Patch 936169 Noam Raphael
-
-- Mac line endings were incorrect when pasting code from some browsers
- when using X11 and the Fink distribution. Python Bug 1263656.
-
-- <Enter> when cursor is on a previous command retrieves that command. Instead
- of replacing the input line, the previous command is now appended to the
- input line. Indentation is preserved, and undo is enabled.
- Patch 1196917 Jeff Shute
-
-- Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with
- the Untabify command.
-
-- Corrected "tab/space" Error Dialog to show correct menu for Untabify.
- Patch 1196980 Jeff Shute
-
-- New files are colorized by default, and colorizing is removed when
- saving as non-Python files. Patch 1196895 Jeff Shute
- Closes Python Bugs 775012 and 800432, partial fix IDLEfork 763524
-
-- Improve subprocess link error notification.
-
-- run.py: use Queue's blocking feature instead of sleeping in the main
- loop. Patch # 1190163 Michiel de Hoon
-
-- Add config-main option to make the 'history' feature non-cyclic.
- Default remains cyclic. Python Patch 914546 Noam Raphael.
-
-- Removed ability to configure tabs indent from Options dialog. This 'feature'
- has never worked and no one has complained. It is still possible to set a
- default tabs (v. spaces) indent 'manually' via config-main.def (or to turn on
- tabs for the current EditorWindow via the Format menu) but IDLE will
- encourage indentation via spaces.
-
-- Enable setting the indentation width using the Options dialog.
- Bug # 783877
-
-- Add keybindings for del-word-left and del-word-right.
-
-- Discourage using an indent width other than 8 when using tabs to indent
- Python code.
-
-- Restore use of EditorWindow.set_indentation_params(), was dead code since
- Autoindent was merged into EditorWindow. This allows IDLE to conform to the
- indentation width of a loaded file. (But it still will not switch to tabs
- even if the file uses tabs.) Any change in indent width is local to that
- window.
-
-- Add Tabnanny check before Run/F5, not just when Checking module.
-
-- If an extension can't be loaded, print warning and skip it instead of
- erroring out.
-
-- Improve error handling when .idlerc can't be created (warn and exit).
-
-- The GUI was hanging if the shell window was closed while a raw_input()
- was pending. Restored the quit() of the readline() mainloop().
- http://mail.python.org/pipermail/idle-dev/2004-December/002307.html
-
-- The remote procedure call module rpc.py can now access data attributes of
- remote registered objects. Changes to these attributes are local, however.
-
-
-What's New in IDLE 1.1?
-=======================
-*Release date: 30-NOV-2004*
-
-- On OpenBSD, terminating IDLE with ctrl-c from the command line caused a
- stuck subprocess MainThread because only the SocketThread was exiting.
-
-- Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set"
- button) caused IDLE to fail on restart (no new keyset was created in
- config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535.
-
-- A change to the linecache.py API caused IDLE to exit when an exception was
- raised while running without the subprocess (-n switch). Python Bug 1063840.
-
-- When paragraph reformat width was made configurable, a bug was
- introduced that caused reformatting of comment blocks to ignore how
- far the block was indented, effectively adding the indentation width
- to the reformat width. This has been repaired, and the reformat
- width is again a bound on the total width of reformatted lines.
-
-- Improve keyboard focus binding, especially in Windows menu. Improve
- window raising, especially in the Windows menu and in the debugger.
- IDLEfork 763524.
-
-- If user passes a non-existent filename on the commandline, just
- open a new file, don't raise a dialog. IDLEfork 854928.
-
-- EditorWindow.py was not finding the .chm help file on Windows. Typo
- at Rev 1.54. Python Bug 990954
-
-- checking sys.platform for substring 'win' was breaking IDLE docs on Mac
- (darwin). Also, Mac Safari browser requires full file:// URIs. SF 900580.
-
-- Redirect the warning stream to the shell during the ScriptBinding check of
- user code and format the warning similarly to an exception for both that
- check and for runtime warnings raised in the subprocess.
-
-- CodeContext hint pane visibility state is now persistent across sessions.
- The pane no longer appears in the shell window. Added capability to limit
- extensions to shell window or editor windows. Noam Raphael addition
- to Patch 936169.
-
-- Paragraph reformat width is now a configurable parameter in the
- Options GUI.
-
-- New Extension: CodeContext. Provides block structuring hints for code
- which has scrolled above an edit window. Patch 936169 Noam Raphael.
-
-- If nulls somehow got into the strings in recent-files.lst
- EditorWindow.update_recent_files_list() was failing. Python Bug 931336.
-
-- If the normal background is changed via Configure/Highlighting, it will
- update immediately, thanks to the previously mentioned patch by Nigel Rowe.
-
-- Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe
- This also fixed IDLEfork bug [ 693418 ] Normal text background color not
- refreshed and Python bug [897872 ] Unknown color name on HP-UX
-
-- rpc.py:SocketIO - Large modules were generating large pickles when downloaded
- to the execution server. The return of the OK response from the subprocess
- initialization was interfering and causing the sending socket to be not
- ready. Add an IO ready test to fix this. Moved the polling IO ready test
- into pollpacket().
-
-- Fix typo in rpc.py, s/b "pickle.PicklingError" not "pickle.UnpicklingError".
-
-- Added a Tk error dialog to run.py inform the user if the subprocess can't
- connect to the user GUI process. Added a timeout to the GUI's listening
- socket. Added Tk error dialogs to PyShell.py to announce a failure to bind
- the port or connect to the subprocess. Clean up error handling during
- connection initiation phase. This is an update of Python Patch 778323.
-
-- Print correct exception even if source file changed since shell was
- restarted. IDLEfork Patch 869012 Noam Raphael
-
-- Keybindings with the Shift modifier now work correctly. So do bindings which
- use the Space key. Limit unmodified user keybindings to the function keys.
- Python Bug 775353, IDLEfork Bugs 755647, 761557
-
-- After an exception, run.py was not setting the exception vector. Noam
- Raphael suggested correcting this so pdb's postmortem pm() would work.
- IDLEfork Patch 844675
-
-- IDLE now does not fail to save the file anymore if the Tk buffer is not a
- Unicode string, yet eol_convention is. Python Bugs 774680, 788378
-
-- IDLE didn't start correctly when Python was installed in "Program Files" on
- W2K and XP. Python Bugs 780451, 784183
-
-- config-main.def documentation incorrectly referred to idle- instead of
- config- filenames. SF 782759 Also added note about .idlerc location.
-
-
-What's New in IDLE 1.0?
-=======================
-*Release date: 29-Jul-2003*
-
-- Added a banner to the shell discussing warnings possibly raised by personal
- firewall software. Added same comment to README.txt.
-
-- Calltip error when docstring was None Python Bug 775541
-
-- Updated extend.txt, help.txt, and config-extensions.def to correctly
- reflect the current status of the configuration system. Python Bug 768469
-
-- Fixed: Call Tip Trimming May Loop Forever. Python Patch 769142 (Daniels)
-
-- Replaced apply(f, args, kwds) with f(*args, **kwargs) to improve performance
- Python Patch 768187
-
-- Break or continue statements outside a loop were causing IDLE crash
- Python Bug 767794
-
-- Convert Unicode strings from readline to IOBinding.encoding. Also set
- sys.std{in|out|err}.encoding, for both the local and the subprocess case.
- SF IDLEfork patch 682347.
-
-- Extend AboutDialog.ViewFile() to support file encodings. Make the CREDITS
- file Latin-1.
-
-- Updated the About dialog to reflect re-integration into Python. Provide
- buttons to display Python's NEWS, License, and Credits, plus additional
- buttons for IDLE's README and NEWS.
-
-- TextViewer() now has a third parameter which allows inserting text into the
- viewer instead of reading from a file.
-
-- (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of
- IDLEfork modified to install in the Python environment. The code in the
- interrupt module has been moved to thread.interrupt_main(). )
-
-- Printing the Shell window was failing if it was not saved first SF 748975
-
-- When using the Search in Files dialog, if the user had a selection
- highlighted in his Editor window, insert it into the dialog search field.
-
-- The Python Shell entry was disappearing from the Windows menu.
-
-- Update the Windows file list when a file name change occurs
-
-- Change to File / Open Module: always pop up the dialog, using the current
- selection as the default value. This is easier to use habitually.
-
-- Avoided a problem with starting the subprocess when 'localhost' doesn't
- resolve to the user's loopback interface. SF 747772
-
-- Fixed an issue with highlighted errors never de-colorizing. SF 747677. Also
- improved notification of Tabnanny Token Error.
-
-- File / New will by default save in the directory of the Edit window from
- which it was initiated. SF 748973 Guido van Rossum patch.
-
-
-What's New in IDLEfork 0.9b1?
-=============================
-*Release date: 02-Jun-2003*
-
-- The current working directory of the execution environment (and shell
- following completion of execution) is now that of the module being run.
-
-- Added the delete-exitfunc option to config-main.def. (This option is not
- included in the Options dialog.) Setting this to True (the default) will
- cause IDLE to not run sys.exitfunc/atexit when the subprocess exits.
-
-- IDLE now preserves the line ending codes when editing a file produced on
- a different platform. SF 661759, SF 538584
-
-- Reduced default editor font size to 10 point and increased window height
- to provide a better initial impression on Windows.
-
-- Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting
- the default font when first installed on Windows. SF 661676
-
-- Added Autosave feature: when user runs code from edit window, if the file
- has been modified IDLE will silently save it if Autosave is enabled. The
- option is set in the Options dialog, and the default is to prompt the
- user to save the file. SF 661318 Bruce Sherwood patch.
-
-- Improved the RESTART annotation in the shell window when the user restarts
- the shell while it is generating output. Also improved annotation when user
- repeatedly hammers the Ctrl-F6 restart.
-
-- Allow IDLE to run when not installed and cwd is not the IDLE directory
- SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael
-
-- When a module is run from an EditorWindow: if its directory is not in
- sys.path, prepend it. This allows the module to import other modules in
- the same directory. Do the same for a script run from the command line.
-
-- Correctly restart the subprocess if it is running user code and the user
- attempts to run some other module or restarts the shell. Do the same if
- the link is broken and it is possible to restart the subprocess and re-
- connect to the GUI. SF RFE 661321.
-
-- Improved exception reporting when running commands or scripts from the
- command line.
-
-- Added a -n command line switch to start IDLE without the subprocess.
- Removed the Shell menu when running in that mode. Updated help messages.
-
-- Added a comment to the shell startup header to indicate when IDLE is not
- using the subprocess.
-
-- Restore the ability to run without the subprocess. This can be important for
- some platforms or configurations. (Running without the subprocess allows the
- debugger to trace through parts of IDLE itself, which may or may not be
- desirable, depending on your point of view. In addition, the traditional
- reload/import tricks must be use if user source code is changed.) This is
- helpful for developing IDLE using IDLE, because one instance can be used to
- edit the code and a separate instance run to test changes. (Multiple
- concurrent IDLE instances with subprocesses is a future feature)
-
-- Improve the error message a user gets when saving a file with non-ASCII
- characters and no source encoding is specified. Done by adding a dialog
- 'EncodingMessage', which contains the line to add in a fixed-font entry
- widget, and which has a button to add that line to the file automatically.
- Also, add a configuration option 'EditorWindow/encoding', which has three
- possible values: none, utf-8, and locale. None is the default: IDLE will show
- this dialog when non-ASCII characters are encountered. utf-8 means that files
- with non-ASCII characters are saved as utf-8-with-bom. locale means that
- files are saved in the locale's encoding; the dialog is only displayed if the
- source contains characters outside the locale's charset. SF 710733 - Loewis
-
-- Improved I/O response by tweaking the wait parameter in various
- calls to signal.signal().
-
-- Implemented a threaded subprocess which allows interrupting a pass
- loop in user code using the 'interrupt' extension. User code runs
- in MainThread, while the RPCServer is handled by SockThread. This is
- necessary because Windows doesn't support signals.
-
-- Implemented the 'interrupt' extension module, which allows a subthread
- to raise a KeyboardInterrupt in the main thread.
-
-- Attempting to save the shell raised an error related to saving
- breakpoints, which are not implemented in the shell
-
-- Provide a correct message when 'exit' or 'quit' are entered at the
- IDLE command prompt SF 695861
-
-- Eliminate extra blank line in shell output caused by not flushing
- stdout when user code ends with an unterminated print. SF 695861
-
-- Moved responsibility for exception formatting (i.e. pruning IDLE internal
- calls) out of rpc.py into the client and server.
-
-- Exit IDLE cleanly even when doing subprocess I/O
-
-- Handle subprocess interrupt with an RPC message.
-
-- Restart the subprocess if it terminates itself. (VPython programs do that)
-
-- Support subclassing of exceptions, including in the shell, by moving the
- exception formatting to the subprocess.
-
-
-What's New in IDLEfork 0.9 Alpha 2?
-===================================
-*Release date: 27-Jan-2003*
-
-- Updated INSTALL.txt to claify use of the python2 rpm.
-
-- Improved formatting in IDLE Help.
-
-- Run menu: Replace "Run Script" with "Run Module".
-
-- Code encountering an unhandled exception under the debugger now shows
- the correct traceback, with IDLE internal levels pruned out.
-
-- If an exception occurs entirely in IDLE, don't prune the IDLE internal
- modules from the traceback displayed.
-
-- Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
-
-- IDLE icons will now install correctly even when setup.py is run from the
- build directory
-
-- Class Browser now compatible with Python2.3 version of pyclbr.py
-
-- Left cursor move in presence of selected text now moves from left end
- of the selection.
-
-- Add Meta keybindings to "IDLE Classic Windows" to handle reversed
- Alt/Meta on some Linux distros.
-
-- Change default: IDLE now starts with Python Shell.
-
-- Removed the File Path from the Additional Help Sources scrolled list.
-
-- Add capability to access Additional Help Sources on the web if the
- Help File Path begins with //http or www. (Otherwise local path is
- validated, as before.)
-
-- Additional Help Sources were not being posted on the Help menu in the
- order entered. Implement sorting the list by [HelpFiles] 'option'
- number.
-
-- Add Browse button to New Help Source dialog. Arrange to start in
- Python/Doc if platform is Windows, otherwise start in current directory.
-
-- Put the Additional Help Sources directly on the Help menu instead of in
- an Extra Help cascade menu. Rearrange the Help menu so the Additional
- Help Sources come last. Update help.txt appropriately.
-
-- Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
-
-- Uniform capitalization in General tab of ConfigDialog, update the doc string.
-
-- Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly
- deleting Additional Help Sources from the user's config file.
-
-- Make configHelpSourceEdit OK button the default and bind <Return>
-
-- Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached
- to parents.
-
-- Use os.startfile() to open both Additional Help and Python Help on the
- Windows platform. The application associated with the file type will act as
- the viewer. Windows help files (.chm) are now supported via the
- Settings/General/Additional Help facility.
-
-- If Python Help files are installed locally on Linux, use them instead of
- accessing python.org.
-
-- Make the methods for finding the Python help docs more robust, and make
- them work in the installed configuration, also.
-
-- On the Save Before Run dialog, make the OK button the default. One
- less mouse action!
-
-- Add a method: EditorWindow.get_geometry() for future use in implementing
- window location persistence.
-
-- Removed the "Help/Advice" menu entry. Thanks, David! We'll remember!
-
-- Change the "Classic Windows" theme's paste key to be <ctrl-v>.
-
-- Rearrange the Shell menu to put Stack Viewer entries adjacent.
-
-- Add the ability to restart the subprocess interpreter from the shell window;
- add an associated menu entry "Shell/Restart" with binding Control-F6. Update
- IDLE help.
-
-- Upon a restart, annotate the shell window with a "restart boundary". Add a
- shell window menu "Shell/View Restart" with binding F6 to jump to the most
- recent restart boundary.
-
-- Add Shell menu to Python Shell; change "Settings" to "Options".
-
-- Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
-
-- Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration.
-
-- In installer text, fix reference to Visual Python, should be VPython.
- Properly credit David Scherer.
-
-- Modified idle, idle.py, idle.pyw to improve exception handling.
-
-
-What's New in IDLEfork 0.9 Alpha 1?
-===================================
-*Release date: 31-Dec-2002*
-
-- First release of major new functionality. For further details refer to
- Idle-dev and/or the Sourceforge CVS.
-
-- Adapted to the Mac platform.
-
-- Overhauled the IDLE startup options and revised the idle -h help message,
- which provides details of command line usage.
-
-- Multiple bug fixes and usability enhancements.
-
-- Introduced the new RPC implementation, which includes a debugger. The output
- of user code is to the shell, and the shell may be used to inspect the
- environment after the run has finished. (In version 0.8.1 the shell
- environment was separate from the environment of the user code.)
-
-- Introduced the configuration GUI and a new About dialog.
-
-- Removed David Scherer's Remote Procedure Call code and replaced with Guido
- van Rossum's. GvR code has support for the IDLE debugger and uses the shell
- to inspect the environment of code Run from an Edit window. Files removed:
- ExecBinding.py, loader.py, protocol.py, Remote.py, spawn.py
-
---------------------------------------------------------------------
-Refer to HISTORY.txt for additional information on earlier releases.
---------------------------------------------------------------------
+------------------------------------------------------------------------
+Refer to NEWS2x.txt and HISTORY.txt for information on earlier releases.
+------------------------------------------------------------------------
diff --git a/Lib/idlelib/NEWS2x.txt b/Lib/idlelib/NEWS2x.txt
new file mode 100644
--- /dev/null
+++ b/Lib/idlelib/NEWS2x.txt
@@ -0,0 +1,660 @@
+What's New in IDLE 2.7? (Merged into 3.1 before 2.7 release.)
+=======================
+*Release date: XX-XXX-2010*
+
+- idle.py modified and simplified to better support developing experimental
+ versions of IDLE which are not installed in the standard location.
+
+- OutputWindow/PyShell right click menu "Go to file/line" wasn't working with
+ file paths containing spaces. Bug 5559.
+
+- Windows: Version string for the .chm help file changed, file not being
+ accessed Patch 5783 Guilherme Polo
+
+- Allow multiple IDLE GUI/subprocess pairs to exist simultaneously. Thanks to
+ David Scherer for suggesting the use of an ephemeral port for the GUI.
+ Patch 1529142 Weeble.
+
+- Remove port spec from run.py and fix bug where subprocess fails to
+ extract port from command line when warnings are present.
+
+- Tk 8.5 Text widget requires 'wordprocessor' tabstyle attr to handle
+ mixed space/tab properly. Issue 5129, patch by Guilherme Polo.
+
+- Issue #3549: On MacOS the preferences menu was not present
+
+- IDLE would print a "Unhandled server exception!" message when internal
+ debugging is enabled.
+
+- Issue #4455: IDLE failed to display the windows list when two windows have
+ the same title.
+
+- Issue #4383: When IDLE cannot make the connection to its subprocess, it would
+ fail to properly display the error message.
+
+- help() was not paging to the shell. Issue1650.
+
+- CodeContext was not importing.
+
+- Corrected two 3.0 compatibility errors reported by Mark Summerfield:
+ http://mail.python.org/pipermail/python-3000/2007-December/011491.html
+
+- Shell was not colorizing due to bug introduced at r57998, Bug 1586.
+
+- Issue #1585: IDLE uses non-existent xrange() function.
+
+- Windows EOL sequence not converted correctly, encoding error.
+ Caused file save to fail. Bug 1130.
+
+- IDLE converted to Python 3000 syntax.
+
+- Strings became Unicode.
+
+- CallTips module now uses the inspect module to produce the argspec.
+
+- IDLE modules now use absolute import instead of implied relative import.
+
+- atexit call replaces sys.exitfunc. The functionality of delete-exitfunc flag
+ in config-main.cfg remains unchanged: if set, registered exit functions will
+ be cleared before IDLE exits.
+
+
+What's New in IDLE 2.6
+======================
+*Release date: 01-Oct-2008*, merged into 3.0 releases detailed above (3.0rc2)
+
+- Issue #2665: On Windows, an IDLE installation upgraded from an old version
+ would not start if a custom theme was defined.
+
+- Home / Control-A toggles between left margin and end of leading white
+ space. issue1196903, patch by Jeff Shute.
+
+- Improved AutoCompleteWindow logic. issue2062, patch by Tal Einat.
+
+- Autocompletion of filenames now support alternate separators, e.g. the
+ '/' char on Windows. issue2061 Patch by Tal Einat.
+
+- Configured selection highlighting colors were ignored; updating highlighting
+ in the config dialog would cause non-Python files to be colored as if they
+ were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat.
+
+- ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat
+
+- There was an error on exit if no sys.exitfunc was defined. Issue 1647.
+
+- Could not open files in .idlerc directory if latter was hidden on Windows.
+ Issue 1743, Issue 1862.
+
+- Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat.
+
+- tabpage.py updated: tabbedPages.py now supports multiple dynamic rows
+ of tabs. Patch 1612746 Tal Einat.
+
+- Add confirmation dialog before printing. Patch 1717170 Tal Einat.
+
+- Show paste position if > 80 col. Patch 1659326 Tal Einat.
+
+- Update cursor color without restarting. Patch 1725576 Tal Einat.
+
+- Allow keyboard interrupt only when user code is executing in subprocess.
+ Patch 1225 Tal Einat (reworked from IDLE-Spoon).
+
+- configDialog cleanup. Patch 1730217 Tal Einat.
+
+- textView cleanup. Patch 1718043 Tal Einat.
+
+- Clean up EditorWindow close.
+
+- Patch 1693258: Fix for duplicate "preferences" menu-OS X. Backport of r56204.
+
+- OSX: Avoid crash for those versions of Tcl/Tk which don't have a console
+
+- Bug in idlelib.MultiCall: Options dialog was crashing IDLE if there was an
+ option in config-extensions w/o a value. Patch #1672481, Tal Einat
+
+- Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;
+ mouse and cursor selection in ACWindow implemented; double Tab inserts
+ current selection and closes ACW (similar to double-click and Return); scroll
+ wheel now works in ACW. Added AutoComplete instructions to IDLE Help.
+
+- AutoCompleteWindow moved below input line, will move above if there
+ isn't enough space. Patch 1621265 Tal Einat
+
+- Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
+ Suggested solution by Christos Georgiou, Bug 791968.
+
+- Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
+
+- Avoid hang when encountering a duplicate in a completion list. Bug 1571112.
+
+- Patch #1362975: Rework CodeContext indentation algorithm to
+ avoid hard-coding pixel widths.
+
+- Bug #813342: Start the IDLE subprocess with -Qnew if the parent
+ is started with that option.
+
+- Honor the "Cancel" action in the save dialog (Debian bug #299092)
+
+- Some syntax errors were being caught by tokenize during the tabnanny
+ check, resulting in obscure error messages. Do the syntax check
+ first. Bug 1562716, 1562719
+
+- IDLE's version number takes a big jump to match the version number of
+ the Python release of which it's a part.
+
+
+What's New in IDLE 1.2?
+=======================
+*Release date: 19-SEP-2006*
+
+- File menu hotkeys: there were three 'p' assignments. Reassign the
+ 'Save Copy As' and 'Print' hotkeys to 'y' and 't'. Change the
+ Shell hotkey from 's' to 'l'.
+
+- IDLE honors new quit() and exit() commands from site.py Quitter() object.
+ Patch 1540892, Jim Jewett
+
+- The 'with' statement is now a Code Context block opener.
+ Patch 1540851, Jim Jewett
+
+- Retrieval of previous shell command was not always preserving indentation
+ (since 1.2a1) Patch 1528468 Tal Einat.
+
+- Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1)
+
+- ToggleTab dialog was setting indent to 8 even if cancelled (since 1.2a1).
+
+- When used w/o subprocess, all exceptions were preceded by an error
+ message claiming they were IDLE internal errors (since 1.2a1).
+
+- Bug #1525817: Don't truncate short lines in IDLE's tool tips.
+
+- Bug #1517990: IDLE keybindings on MacOS X now work correctly
+
+- Bug #1517996: IDLE now longer shows the default Tk menu when a
+ path browser, class browser or debugger is the frontmost window on MacOS X
+
+- EditorWindow.test() was failing. Bug 1417598
+
+- EditorWindow failed when used stand-alone if sys.ps1 not set.
+ Bug 1010370 Dave Florek
+
+- Tooltips failed on new-syle class __init__ args. Bug 1027566 Loren Guthrie
+
+- Avoid occasional failure to detect closing paren properly.
+ Patch 1407280 Tal Einat
+
+- Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168.
+
+- Colorizer now handles #<builtin> correctly, also unicode strings and
+ 'as' keyword in comment directly following import command. Closes 1325071.
+ Patch 1479219 Tal Einat
+
+- Patch #1162825: Support non-ASCII characters in IDLE window titles.
+
+- Source file f.flush() after writing; trying to avoid lossage if user
+ kills GUI.
+
+- Options / Keys / Advanced dialog made functional. Also, allow binding
+ of 'movement' keys.
+
+- 'syntax' patch adds improved calltips and a new class attribute listbox.
+ MultiCall module allows binding multiple actions to an event.
+ Patch 906702 Noam Raphael
+
+- Better indentation after first line of string continuation.
+ IDLEfork Patch 681992, Noam Raphael
+
+- Fixed CodeContext alignment problem, following suggestion from Tal Einat.
+
+- Increased performance in CodeContext extension Patch 936169 Noam Raphael
+
+- Mac line endings were incorrect when pasting code from some browsers
+ when using X11 and the Fink distribution. Python Bug 1263656.
+
+- <Enter> when cursor is on a previous command retrieves that command. Instead
+ of replacing the input line, the previous command is now appended to the
+ input line. Indentation is preserved, and undo is enabled.
+ Patch 1196917 Jeff Shute
+
+- Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with
+ the Untabify command.
+
+- Corrected "tab/space" Error Dialog to show correct menu for Untabify.
+ Patch 1196980 Jeff Shute
+
+- New files are colorized by default, and colorizing is removed when
+ saving as non-Python files. Patch 1196895 Jeff Shute
+ Closes Python Bugs 775012 and 800432, partial fix IDLEfork 763524
+
+- Improve subprocess link error notification.
+
+- run.py: use Queue's blocking feature instead of sleeping in the main
+ loop. Patch # 1190163 Michiel de Hoon
+
+- Add config-main option to make the 'history' feature non-cyclic.
+ Default remains cyclic. Python Patch 914546 Noam Raphael.
+
+- Removed ability to configure tabs indent from Options dialog. This 'feature'
+ has never worked and no one has complained. It is still possible to set a
+ default tabs (v. spaces) indent 'manually' via config-main.def (or to turn on
+ tabs for the current EditorWindow via the Format menu) but IDLE will
+ encourage indentation via spaces.
+
+- Enable setting the indentation width using the Options dialog.
+ Bug # 783877
+
+- Add keybindings for del-word-left and del-word-right.
+
+- Discourage using an indent width other than 8 when using tabs to indent
+ Python code.
+
+- Restore use of EditorWindow.set_indentation_params(), was dead code since
+ Autoindent was merged into EditorWindow. This allows IDLE to conform to the
+ indentation width of a loaded file. (But it still will not switch to tabs
+ even if the file uses tabs.) Any change in indent width is local to that
+ window.
+
+- Add Tabnanny check before Run/F5, not just when Checking module.
+
+- If an extension can't be loaded, print warning and skip it instead of
+ erroring out.
+
+- Improve error handling when .idlerc can't be created (warn and exit).
+
+- The GUI was hanging if the shell window was closed while a raw_input()
+ was pending. Restored the quit() of the readline() mainloop().
+ http://mail.python.org/pipermail/idle-dev/2004-December/002307.html
+
+- The remote procedure call module rpc.py can now access data attributes of
+ remote registered objects. Changes to these attributes are local, however.
+
+
+What's New in IDLE 1.1?
+=======================
+*Release date: 30-NOV-2004*
+
+- On OpenBSD, terminating IDLE with ctrl-c from the command line caused a
+ stuck subprocess MainThread because only the SocketThread was exiting.
+
+- Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set"
+ button) caused IDLE to fail on restart (no new keyset was created in
+ config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535.
+
+- A change to the linecache.py API caused IDLE to exit when an exception was
+ raised while running without the subprocess (-n switch). Python Bug 1063840.
+
+- When paragraph reformat width was made configurable, a bug was
+ introduced that caused reformatting of comment blocks to ignore how
+ far the block was indented, effectively adding the indentation width
+ to the reformat width. This has been repaired, and the reformat
+ width is again a bound on the total width of reformatted lines.
+
+- Improve keyboard focus binding, especially in Windows menu. Improve
+ window raising, especially in the Windows menu and in the debugger.
+ IDLEfork 763524.
+
+- If user passes a non-existent filename on the commandline, just
+ open a new file, don't raise a dialog. IDLEfork 854928.
+
+- EditorWindow.py was not finding the .chm help file on Windows. Typo
+ at Rev 1.54. Python Bug 990954
+
+- checking sys.platform for substring 'win' was breaking IDLE docs on Mac
+ (darwin). Also, Mac Safari browser requires full file:// URIs. SF 900580.
+
+- Redirect the warning stream to the shell during the ScriptBinding check of
+ user code and format the warning similarly to an exception for both that
+ check and for runtime warnings raised in the subprocess.
+
+- CodeContext hint pane visibility state is now persistent across sessions.
+ The pane no longer appears in the shell window. Added capability to limit
+ extensions to shell window or editor windows. Noam Raphael addition
+ to Patch 936169.
+
+- Paragraph reformat width is now a configurable parameter in the
+ Options GUI.
+
+- New Extension: CodeContext. Provides block structuring hints for code
+ which has scrolled above an edit window. Patch 936169 Noam Raphael.
+
+- If nulls somehow got into the strings in recent-files.lst
+ EditorWindow.update_recent_files_list() was failing. Python Bug 931336.
+
+- If the normal background is changed via Configure/Highlighting, it will
+ update immediately, thanks to the previously mentioned patch by Nigel Rowe.
+
+- Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe
+ This also fixed IDLEfork bug [ 693418 ] Normal text background color not
+ refreshed and Python bug [897872 ] Unknown color name on HP-UX
+
+- rpc.py:SocketIO - Large modules were generating large pickles when downloaded
+ to the execution server. The return of the OK response from the subprocess
+ initialization was interfering and causing the sending socket to be not
+ ready. Add an IO ready test to fix this. Moved the polling IO ready test
+ into pollpacket().
+
+- Fix typo in rpc.py, s/b "pickle.PicklingError" not "pickle.UnpicklingError".
+
+- Added a Tk error dialog to run.py inform the user if the subprocess can't
+ connect to the user GUI process. Added a timeout to the GUI's listening
+ socket. Added Tk error dialogs to PyShell.py to announce a failure to bind
+ the port or connect to the subprocess. Clean up error handling during
+ connection initiation phase. This is an update of Python Patch 778323.
+
+- Print correct exception even if source file changed since shell was
+ restarted. IDLEfork Patch 869012 Noam Raphael
+
+- Keybindings with the Shift modifier now work correctly. So do bindings which
+ use the Space key. Limit unmodified user keybindings to the function keys.
+ Python Bug 775353, IDLEfork Bugs 755647, 761557
+
+- After an exception, run.py was not setting the exception vector. Noam
+ Raphael suggested correcting this so pdb's postmortem pm() would work.
+ IDLEfork Patch 844675
+
+- IDLE now does not fail to save the file anymore if the Tk buffer is not a
+ Unicode string, yet eol_convention is. Python Bugs 774680, 788378
+
+- IDLE didn't start correctly when Python was installed in "Program Files" on
+ W2K and XP. Python Bugs 780451, 784183
+
+- config-main.def documentation incorrectly referred to idle- instead of
+ config- filenames. SF 782759 Also added note about .idlerc location.
+
+
+What's New in IDLE 1.0?
+=======================
+*Release date: 29-Jul-2003*
+
+- Added a banner to the shell discussing warnings possibly raised by personal
+ firewall software. Added same comment to README.txt.
+
+- Calltip error when docstring was None Python Bug 775541
+
+- Updated extend.txt, help.txt, and config-extensions.def to correctly
+ reflect the current status of the configuration system. Python Bug 768469
+
+- Fixed: Call Tip Trimming May Loop Forever. Python Patch 769142 (Daniels)
+
+- Replaced apply(f, args, kwds) with f(*args, **kwargs) to improve performance
+ Python Patch 768187
+
+- Break or continue statements outside a loop were causing IDLE crash
+ Python Bug 767794
+
+- Convert Unicode strings from readline to IOBinding.encoding. Also set
+ sys.std{in|out|err}.encoding, for both the local and the subprocess case.
+ SF IDLEfork patch 682347.
+
+- Extend AboutDialog.ViewFile() to support file encodings. Make the CREDITS
+ file Latin-1.
+
+- Updated the About dialog to reflect re-integration into Python. Provide
+ buttons to display Python's NEWS, License, and Credits, plus additional
+ buttons for IDLE's README and NEWS.
+
+- TextViewer() now has a third parameter which allows inserting text into the
+ viewer instead of reading from a file.
+
+- (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of
+ IDLEfork modified to install in the Python environment. The code in the
+ interrupt module has been moved to thread.interrupt_main(). )
+
+- Printing the Shell window was failing if it was not saved first SF 748975
+
+- When using the Search in Files dialog, if the user had a selection
+ highlighted in his Editor window, insert it into the dialog search field.
+
+- The Python Shell entry was disappearing from the Windows menu.
+
+- Update the Windows file list when a file name change occurs
+
+- Change to File / Open Module: always pop up the dialog, using the current
+ selection as the default value. This is easier to use habitually.
+
+- Avoided a problem with starting the subprocess when 'localhost' doesn't
+ resolve to the user's loopback interface. SF 747772
+
+- Fixed an issue with highlighted errors never de-colorizing. SF 747677. Also
+ improved notification of Tabnanny Token Error.
+
+- File / New will by default save in the directory of the Edit window from
+ which it was initiated. SF 748973 Guido van Rossum patch.
+
+
+What's New in IDLEfork 0.9b1?
+=============================
+*Release date: 02-Jun-2003*
+
+- The current working directory of the execution environment (and shell
+ following completion of execution) is now that of the module being run.
+
+- Added the delete-exitfunc option to config-main.def. (This option is not
+ included in the Options dialog.) Setting this to True (the default) will
+ cause IDLE to not run sys.exitfunc/atexit when the subprocess exits.
+
+- IDLE now preserves the line ending codes when editing a file produced on
+ a different platform. SF 661759, SF 538584
+
+- Reduced default editor font size to 10 point and increased window height
+ to provide a better initial impression on Windows.
+
+- Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting
+ the default font when first installed on Windows. SF 661676
+
+- Added Autosave feature: when user runs code from edit window, if the file
+ has been modified IDLE will silently save it if Autosave is enabled. The
+ option is set in the Options dialog, and the default is to prompt the
+ user to save the file. SF 661318 Bruce Sherwood patch.
+
+- Improved the RESTART annotation in the shell window when the user restarts
+ the shell while it is generating output. Also improved annotation when user
+ repeatedly hammers the Ctrl-F6 restart.
+
+- Allow IDLE to run when not installed and cwd is not the IDLE directory
+ SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael
+
+- When a module is run from an EditorWindow: if its directory is not in
+ sys.path, prepend it. This allows the module to import other modules in
+ the same directory. Do the same for a script run from the command line.
+
+- Correctly restart the subprocess if it is running user code and the user
+ attempts to run some other module or restarts the shell. Do the same if
+ the link is broken and it is possible to restart the subprocess and re-
+ connect to the GUI. SF RFE 661321.
+
+- Improved exception reporting when running commands or scripts from the
+ command line.
+
+- Added a -n command line switch to start IDLE without the subprocess.
+ Removed the Shell menu when running in that mode. Updated help messages.
+
+- Added a comment to the shell startup header to indicate when IDLE is not
+ using the subprocess.
+
+- Restore the ability to run without the subprocess. This can be important for
+ some platforms or configurations. (Running without the subprocess allows the
+ debugger to trace through parts of IDLE itself, which may or may not be
+ desirable, depending on your point of view. In addition, the traditional
+ reload/import tricks must be use if user source code is changed.) This is
+ helpful for developing IDLE using IDLE, because one instance can be used to
+ edit the code and a separate instance run to test changes. (Multiple
+ concurrent IDLE instances with subprocesses is a future feature)
+
+- Improve the error message a user gets when saving a file with non-ASCII
+ characters and no source encoding is specified. Done by adding a dialog
+ 'EncodingMessage', which contains the line to add in a fixed-font entry
+ widget, and which has a button to add that line to the file automatically.
+ Also, add a configuration option 'EditorWindow/encoding', which has three
+ possible values: none, utf-8, and locale. None is the default: IDLE will show
+ this dialog when non-ASCII characters are encountered. utf-8 means that files
+ with non-ASCII characters are saved as utf-8-with-bom. locale means that
+ files are saved in the locale's encoding; the dialog is only displayed if the
+ source contains characters outside the locale's charset. SF 710733 - Loewis
+
+- Improved I/O response by tweaking the wait parameter in various
+ calls to signal.signal().
+
+- Implemented a threaded subprocess which allows interrupting a pass
+ loop in user code using the 'interrupt' extension. User code runs
+ in MainThread, while the RPCServer is handled by SockThread. This is
+ necessary because Windows doesn't support signals.
+
+- Implemented the 'interrupt' extension module, which allows a subthread
+ to raise a KeyboardInterrupt in the main thread.
+
+- Attempting to save the shell raised an error related to saving
+ breakpoints, which are not implemented in the shell
+
+- Provide a correct message when 'exit' or 'quit' are entered at the
+ IDLE command prompt SF 695861
+
+- Eliminate extra blank line in shell output caused by not flushing
+ stdout when user code ends with an unterminated print. SF 695861
+
+- Moved responsibility for exception formatting (i.e. pruning IDLE internal
+ calls) out of rpc.py into the client and server.
+
+- Exit IDLE cleanly even when doing subprocess I/O
+
+- Handle subprocess interrupt with an RPC message.
+
+- Restart the subprocess if it terminates itself. (VPython programs do that)
+
+- Support subclassing of exceptions, including in the shell, by moving the
+ exception formatting to the subprocess.
+
+
+What's New in IDLEfork 0.9 Alpha 2?
+===================================
+*Release date: 27-Jan-2003*
+
+- Updated INSTALL.txt to claify use of the python2 rpm.
+
+- Improved formatting in IDLE Help.
+
+- Run menu: Replace "Run Script" with "Run Module".
+
+- Code encountering an unhandled exception under the debugger now shows
+ the correct traceback, with IDLE internal levels pruned out.
+
+- If an exception occurs entirely in IDLE, don't prune the IDLE internal
+ modules from the traceback displayed.
+
+- Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
+
+- IDLE icons will now install correctly even when setup.py is run from the
+ build directory
+
+- Class Browser now compatible with Python2.3 version of pyclbr.py
+
+- Left cursor move in presence of selected text now moves from left end
+ of the selection.
+
+- Add Meta keybindings to "IDLE Classic Windows" to handle reversed
+ Alt/Meta on some Linux distros.
+
+- Change default: IDLE now starts with Python Shell.
+
+- Removed the File Path from the Additional Help Sources scrolled list.
+
+- Add capability to access Additional Help Sources on the web if the
+ Help File Path begins with //http or www. (Otherwise local path is
+ validated, as before.)
+
+- Additional Help Sources were not being posted on the Help menu in the
+ order entered. Implement sorting the list by [HelpFiles] 'option'
+ number.
+
+- Add Browse button to New Help Source dialog. Arrange to start in
+ Python/Doc if platform is Windows, otherwise start in current directory.
+
+- Put the Additional Help Sources directly on the Help menu instead of in
+ an Extra Help cascade menu. Rearrange the Help menu so the Additional
+ Help Sources come last. Update help.txt appropriately.
+
+- Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
+
+- Uniform capitalization in General tab of ConfigDialog, update the doc string.
+
+- Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly
+ deleting Additional Help Sources from the user's config file.
+
+- Make configHelpSourceEdit OK button the default and bind <Return>
+
+- Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached
+ to parents.
+
+- Use os.startfile() to open both Additional Help and Python Help on the
+ Windows platform. The application associated with the file type will act as
+ the viewer. Windows help files (.chm) are now supported via the
+ Settings/General/Additional Help facility.
+
+- If Python Help files are installed locally on Linux, use them instead of
+ accessing python.org.
+
+- Make the methods for finding the Python help docs more robust, and make
+ them work in the installed configuration, also.
+
+- On the Save Before Run dialog, make the OK button the default. One
+ less mouse action!
+
+- Add a method: EditorWindow.get_geometry() for future use in implementing
+ window location persistence.
+
+- Removed the "Help/Advice" menu entry. Thanks, David! We'll remember!
+
+- Change the "Classic Windows" theme's paste key to be <ctrl-v>.
+
+- Rearrange the Shell menu to put Stack Viewer entries adjacent.
+
+- Add the ability to restart the subprocess interpreter from the shell window;
+ add an associated menu entry "Shell/Restart" with binding Control-F6. Update
+ IDLE help.
+
+- Upon a restart, annotate the shell window with a "restart boundary". Add a
+ shell window menu "Shell/View Restart" with binding F6 to jump to the most
+ recent restart boundary.
+
+- Add Shell menu to Python Shell; change "Settings" to "Options".
+
+- Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
+
+- Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration.
+
+- In installer text, fix reference to Visual Python, should be VPython.
+ Properly credit David Scherer.
+
+- Modified idle, idle.py, idle.pyw to improve exception handling.
+
+
+What's New in IDLEfork 0.9 Alpha 1?
+===================================
+*Release date: 31-Dec-2002*
+
+- First release of major new functionality. For further details refer to
+ Idle-dev and/or the Sourceforge CVS.
+
+- Adapted to the Mac platform.
+
+- Overhauled the IDLE startup options and revised the idle -h help message,
+ which provides details of command line usage.
+
+- Multiple bug fixes and usability enhancements.
+
+- Introduced the new RPC implementation, which includes a debugger. The output
+ of user code is to the shell, and the shell may be used to inspect the
+ environment after the run has finished. (In version 0.8.1 the shell
+ environment was separate from the environment of the user code.)
+
+- Introduced the configuration GUI and a new About dialog.
+
+- Removed David Scherer's Remote Procedure Call code and replaced with Guido
+ van Rossum's. GvR code has support for the IDLE debugger and uses the shell
+ to inspect the environment of code Run from an Edit window. Files removed:
+ ExecBinding.py, loader.py, protocol.py, Remote.py, spawn.py
+
+--------------------------------------------------------------------
+Refer to HISTORY.txt for additional information on earlier releases.
+--------------------------------------------------------------------
--
Repository URL: https://hg.python.org/cpython
1
0
cpython (3.5): Move idlelib/NEWS.txt entries for 2.x into a separate file -- NEWS2x.txt.
by terry.reedy Sept. 30, 2016
by terry.reedy Sept. 30, 2016
Sept. 30, 2016
https://hg.python.org/cpython/rev/b5705456d9da
changeset: 104168:b5705456d9da
branch: 3.5
parent: 104164:17f2b6b2e24c
user: Terry Jan Reedy <tjreedy(a)udel.edu>
date: Thu Sep 29 23:59:55 2016 -0400
summary:
Move idlelib/NEWS.txt entries for 2.x into a separate file -- NEWS2x.txt.
Reformat a few early 3.x entries in HEWS.txt.
files:
Lib/idlelib/NEWS.txt | 676 +----------------------------
Lib/idlelib/NEWS2x.txt | 660 ++++++++++++++++++++++++++++
2 files changed, 669 insertions(+), 667 deletions(-)
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt
--- a/Lib/idlelib/NEWS.txt
+++ b/Lib/idlelib/NEWS.txt
@@ -315,7 +315,7 @@
- Issue # 12510: Attempt to get certain tool tips no longer crashes IDLE.
Erroneous tool tips have been corrected. Default added for callables.
-- Issue10365: File open dialog now works instead of crashing even when
+- Issue #10365: File open dialog now works instead of crashing even when
parent window is closed while dialog is open.
- Issue 14876: use user-selected font for highlight configuration.
@@ -351,18 +351,18 @@
- Issue #1028: Ctrl-space binding to show completions was causing IDLE to exit.
Tk < 8.5 was sending invalid Unicode null; replaced with valid null.
-- <Home> toggle failing on Tk 8.5, causing IDLE exits and strange selection
- behavior. Issue 4676. Improve selection extension behaviour.
+- Issue #4676: <Home> toggle failing on Tk 8.5, causing IDLE exits and strange selection
+ behavior. Improve selection extension behaviour.
-- <Home> toggle non-functional when NumLock set on Windows. Issue 3851.
+- Issue #3851: <Home> toggle non-functional when NumLock set on Windows.
What's New in IDLE 3.1b1?
=========================
*Release date: 06-May-09*
-- Use of 'filter' in keybindingDialog.py was causing custom key assignment to
- fail. Patch 5707 amaury.forgeotdarc.
+- Issue #5707: Use of 'filter' in keybindingDialog.py was causing custom key assignment to
+ fail. Patch by Amaury Forgeot d'Arc.
- Issue #4815: Offer conversion to UTF-8 if source files have
no encoding declaration and are not encoded in UTF-8.
@@ -377,664 +377,6 @@
- Issue #2665: On Windows, an IDLE installation upgraded from an old version
would not start if a custom theme was defined.
-
-What's New in IDLE 2.7? (UNRELEASED, but merged into 3.1 releases above.)
-=======================
-*Release date: XX-XXX-2010*
-
-- idle.py modified and simplified to better support developing experimental
- versions of IDLE which are not installed in the standard location.
-
-- OutputWindow/PyShell right click menu "Go to file/line" wasn't working with
- file paths containing spaces. Bug 5559.
-
-- Windows: Version string for the .chm help file changed, file not being
- accessed Patch 5783 Guilherme Polo
-
-- Allow multiple IDLE GUI/subprocess pairs to exist simultaneously. Thanks to
- David Scherer for suggesting the use of an ephemeral port for the GUI.
- Patch 1529142 Weeble.
-
-- Remove port spec from run.py and fix bug where subprocess fails to
- extract port from command line when warnings are present.
-
-- Tk 8.5 Text widget requires 'wordprocessor' tabstyle attr to handle
- mixed space/tab properly. Issue 5129, patch by Guilherme Polo.
-
-- Issue #3549: On MacOS the preferences menu was not present
-
-- IDLE would print a "Unhandled server exception!" message when internal
- debugging is enabled.
-
-- Issue #4455: IDLE failed to display the windows list when two windows have
- the same title.
-
-- Issue #4383: When IDLE cannot make the connection to its subprocess, it would
- fail to properly display the error message.
-
-- help() was not paging to the shell. Issue1650.
-
-- CodeContext was not importing.
-
-- Corrected two 3.0 compatibility errors reported by Mark Summerfield:
- http://mail.python.org/pipermail/python-3000/2007-December/011491.html
-
-- Shell was not colorizing due to bug introduced at r57998, Bug 1586.
-
-- Issue #1585: IDLE uses non-existent xrange() function.
-
-- Windows EOL sequence not converted correctly, encoding error.
- Caused file save to fail. Bug 1130.
-
-- IDLE converted to Python 3000 syntax.
-
-- Strings became Unicode.
-
-- CallTips module now uses the inspect module to produce the argspec.
-
-- IDLE modules now use absolute import instead of implied relative import.
-
-- atexit call replaces sys.exitfunc. The functionality of delete-exitfunc flag
- in config-main.cfg remains unchanged: if set, registered exit functions will
- be cleared before IDLE exits.
-
-
-What's New in IDLE 2.6
-======================
-*Release date: 01-Oct-2008*, merged into 3.0 releases detailed above (3.0rc2)
-
-- Issue #2665: On Windows, an IDLE installation upgraded from an old version
- would not start if a custom theme was defined.
-
-- Home / Control-A toggles between left margin and end of leading white
- space. issue1196903, patch by Jeff Shute.
-
-- Improved AutoCompleteWindow logic. issue2062, patch by Tal Einat.
-
-- Autocompletion of filenames now support alternate separators, e.g. the
- '/' char on Windows. issue2061 Patch by Tal Einat.
-
-- Configured selection highlighting colors were ignored; updating highlighting
- in the config dialog would cause non-Python files to be colored as if they
- were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat.
-
-- ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat
-
-- There was an error on exit if no sys.exitfunc was defined. Issue 1647.
-
-- Could not open files in .idlerc directory if latter was hidden on Windows.
- Issue 1743, Issue 1862.
-
-- Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat.
-
-- tabpage.py updated: tabbedPages.py now supports multiple dynamic rows
- of tabs. Patch 1612746 Tal Einat.
-
-- Add confirmation dialog before printing. Patch 1717170 Tal Einat.
-
-- Show paste position if > 80 col. Patch 1659326 Tal Einat.
-
-- Update cursor color without restarting. Patch 1725576 Tal Einat.
-
-- Allow keyboard interrupt only when user code is executing in subprocess.
- Patch 1225 Tal Einat (reworked from IDLE-Spoon).
-
-- configDialog cleanup. Patch 1730217 Tal Einat.
-
-- textView cleanup. Patch 1718043 Tal Einat.
-
-- Clean up EditorWindow close.
-
-- Patch 1693258: Fix for duplicate "preferences" menu-OS X. Backport of r56204.
-
-- OSX: Avoid crash for those versions of Tcl/Tk which don't have a console
-
-- Bug in idlelib.MultiCall: Options dialog was crashing IDLE if there was an
- option in config-extensions w/o a value. Patch #1672481, Tal Einat
-
-- Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;
- mouse and cursor selection in ACWindow implemented; double Tab inserts
- current selection and closes ACW (similar to double-click and Return); scroll
- wheel now works in ACW. Added AutoComplete instructions to IDLE Help.
-
-- AutoCompleteWindow moved below input line, will move above if there
- isn't enough space. Patch 1621265 Tal Einat
-
-- Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
- Suggested solution by Christos Georgiou, Bug 791968.
-
-- Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
-
-- Avoid hang when encountering a duplicate in a completion list. Bug 1571112.
-
-- Patch #1362975: Rework CodeContext indentation algorithm to
- avoid hard-coding pixel widths.
-
-- Bug #813342: Start the IDLE subprocess with -Qnew if the parent
- is started with that option.
-
-- Honor the "Cancel" action in the save dialog (Debian bug #299092)
-
-- Some syntax errors were being caught by tokenize during the tabnanny
- check, resulting in obscure error messages. Do the syntax check
- first. Bug 1562716, 1562719
-
-- IDLE's version number takes a big jump to match the version number of
- the Python release of which it's a part.
-
-
-What's New in IDLE 1.2?
-=======================
-*Release date: 19-SEP-2006*
-
-- File menu hotkeys: there were three 'p' assignments. Reassign the
- 'Save Copy As' and 'Print' hotkeys to 'y' and 't'. Change the
- Shell hotkey from 's' to 'l'.
-
-- IDLE honors new quit() and exit() commands from site.py Quitter() object.
- Patch 1540892, Jim Jewett
-
-- The 'with' statement is now a Code Context block opener.
- Patch 1540851, Jim Jewett
-
-- Retrieval of previous shell command was not always preserving indentation
- (since 1.2a1) Patch 1528468 Tal Einat.
-
-- Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1)
-
-- ToggleTab dialog was setting indent to 8 even if cancelled (since 1.2a1).
-
-- When used w/o subprocess, all exceptions were preceded by an error
- message claiming they were IDLE internal errors (since 1.2a1).
-
-- Bug #1525817: Don't truncate short lines in IDLE's tool tips.
-
-- Bug #1517990: IDLE keybindings on MacOS X now work correctly
-
-- Bug #1517996: IDLE now longer shows the default Tk menu when a
- path browser, class browser or debugger is the frontmost window on MacOS X
-
-- EditorWindow.test() was failing. Bug 1417598
-
-- EditorWindow failed when used stand-alone if sys.ps1 not set.
- Bug 1010370 Dave Florek
-
-- Tooltips failed on new-syle class __init__ args. Bug 1027566 Loren Guthrie
-
-- Avoid occasional failure to detect closing paren properly.
- Patch 1407280 Tal Einat
-
-- Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168.
-
-- Colorizer now handles #<builtin> correctly, also unicode strings and
- 'as' keyword in comment directly following import command. Closes 1325071.
- Patch 1479219 Tal Einat
-
-- Patch #1162825: Support non-ASCII characters in IDLE window titles.
-
-- Source file f.flush() after writing; trying to avoid lossage if user
- kills GUI.
-
-- Options / Keys / Advanced dialog made functional. Also, allow binding
- of 'movement' keys.
-
-- 'syntax' patch adds improved calltips and a new class attribute listbox.
- MultiCall module allows binding multiple actions to an event.
- Patch 906702 Noam Raphael
-
-- Better indentation after first line of string continuation.
- IDLEfork Patch 681992, Noam Raphael
-
-- Fixed CodeContext alignment problem, following suggestion from Tal Einat.
-
-- Increased performance in CodeContext extension Patch 936169 Noam Raphael
-
-- Mac line endings were incorrect when pasting code from some browsers
- when using X11 and the Fink distribution. Python Bug 1263656.
-
-- <Enter> when cursor is on a previous command retrieves that command. Instead
- of replacing the input line, the previous command is now appended to the
- input line. Indentation is preserved, and undo is enabled.
- Patch 1196917 Jeff Shute
-
-- Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with
- the Untabify command.
-
-- Corrected "tab/space" Error Dialog to show correct menu for Untabify.
- Patch 1196980 Jeff Shute
-
-- New files are colorized by default, and colorizing is removed when
- saving as non-Python files. Patch 1196895 Jeff Shute
- Closes Python Bugs 775012 and 800432, partial fix IDLEfork 763524
-
-- Improve subprocess link error notification.
-
-- run.py: use Queue's blocking feature instead of sleeping in the main
- loop. Patch # 1190163 Michiel de Hoon
-
-- Add config-main option to make the 'history' feature non-cyclic.
- Default remains cyclic. Python Patch 914546 Noam Raphael.
-
-- Removed ability to configure tabs indent from Options dialog. This 'feature'
- has never worked and no one has complained. It is still possible to set a
- default tabs (v. spaces) indent 'manually' via config-main.def (or to turn on
- tabs for the current EditorWindow via the Format menu) but IDLE will
- encourage indentation via spaces.
-
-- Enable setting the indentation width using the Options dialog.
- Bug # 783877
-
-- Add keybindings for del-word-left and del-word-right.
-
-- Discourage using an indent width other than 8 when using tabs to indent
- Python code.
-
-- Restore use of EditorWindow.set_indentation_params(), was dead code since
- Autoindent was merged into EditorWindow. This allows IDLE to conform to the
- indentation width of a loaded file. (But it still will not switch to tabs
- even if the file uses tabs.) Any change in indent width is local to that
- window.
-
-- Add Tabnanny check before Run/F5, not just when Checking module.
-
-- If an extension can't be loaded, print warning and skip it instead of
- erroring out.
-
-- Improve error handling when .idlerc can't be created (warn and exit).
-
-- The GUI was hanging if the shell window was closed while a raw_input()
- was pending. Restored the quit() of the readline() mainloop().
- http://mail.python.org/pipermail/idle-dev/2004-December/002307.html
-
-- The remote procedure call module rpc.py can now access data attributes of
- remote registered objects. Changes to these attributes are local, however.
-
-
-What's New in IDLE 1.1?
-=======================
-*Release date: 30-NOV-2004*
-
-- On OpenBSD, terminating IDLE with ctrl-c from the command line caused a
- stuck subprocess MainThread because only the SocketThread was exiting.
-
-- Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set"
- button) caused IDLE to fail on restart (no new keyset was created in
- config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535.
-
-- A change to the linecache.py API caused IDLE to exit when an exception was
- raised while running without the subprocess (-n switch). Python Bug 1063840.
-
-- When paragraph reformat width was made configurable, a bug was
- introduced that caused reformatting of comment blocks to ignore how
- far the block was indented, effectively adding the indentation width
- to the reformat width. This has been repaired, and the reformat
- width is again a bound on the total width of reformatted lines.
-
-- Improve keyboard focus binding, especially in Windows menu. Improve
- window raising, especially in the Windows menu and in the debugger.
- IDLEfork 763524.
-
-- If user passes a non-existent filename on the commandline, just
- open a new file, don't raise a dialog. IDLEfork 854928.
-
-- EditorWindow.py was not finding the .chm help file on Windows. Typo
- at Rev 1.54. Python Bug 990954
-
-- checking sys.platform for substring 'win' was breaking IDLE docs on Mac
- (darwin). Also, Mac Safari browser requires full file:// URIs. SF 900580.
-
-- Redirect the warning stream to the shell during the ScriptBinding check of
- user code and format the warning similarly to an exception for both that
- check and for runtime warnings raised in the subprocess.
-
-- CodeContext hint pane visibility state is now persistent across sessions.
- The pane no longer appears in the shell window. Added capability to limit
- extensions to shell window or editor windows. Noam Raphael addition
- to Patch 936169.
-
-- Paragraph reformat width is now a configurable parameter in the
- Options GUI.
-
-- New Extension: CodeContext. Provides block structuring hints for code
- which has scrolled above an edit window. Patch 936169 Noam Raphael.
-
-- If nulls somehow got into the strings in recent-files.lst
- EditorWindow.update_recent_files_list() was failing. Python Bug 931336.
-
-- If the normal background is changed via Configure/Highlighting, it will
- update immediately, thanks to the previously mentioned patch by Nigel Rowe.
-
-- Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe
- This also fixed IDLEfork bug [ 693418 ] Normal text background color not
- refreshed and Python bug [897872 ] Unknown color name on HP-UX
-
-- rpc.py:SocketIO - Large modules were generating large pickles when downloaded
- to the execution server. The return of the OK response from the subprocess
- initialization was interfering and causing the sending socket to be not
- ready. Add an IO ready test to fix this. Moved the polling IO ready test
- into pollpacket().
-
-- Fix typo in rpc.py, s/b "pickle.PicklingError" not "pickle.UnpicklingError".
-
-- Added a Tk error dialog to run.py inform the user if the subprocess can't
- connect to the user GUI process. Added a timeout to the GUI's listening
- socket. Added Tk error dialogs to PyShell.py to announce a failure to bind
- the port or connect to the subprocess. Clean up error handling during
- connection initiation phase. This is an update of Python Patch 778323.
-
-- Print correct exception even if source file changed since shell was
- restarted. IDLEfork Patch 869012 Noam Raphael
-
-- Keybindings with the Shift modifier now work correctly. So do bindings which
- use the Space key. Limit unmodified user keybindings to the function keys.
- Python Bug 775353, IDLEfork Bugs 755647, 761557
-
-- After an exception, run.py was not setting the exception vector. Noam
- Raphael suggested correcting this so pdb's postmortem pm() would work.
- IDLEfork Patch 844675
-
-- IDLE now does not fail to save the file anymore if the Tk buffer is not a
- Unicode string, yet eol_convention is. Python Bugs 774680, 788378
-
-- IDLE didn't start correctly when Python was installed in "Program Files" on
- W2K and XP. Python Bugs 780451, 784183
-
-- config-main.def documentation incorrectly referred to idle- instead of
- config- filenames. SF 782759 Also added note about .idlerc location.
-
-
-What's New in IDLE 1.0?
-=======================
-*Release date: 29-Jul-2003*
-
-- Added a banner to the shell discussing warnings possibly raised by personal
- firewall software. Added same comment to README.txt.
-
-- Calltip error when docstring was None Python Bug 775541
-
-- Updated extend.txt, help.txt, and config-extensions.def to correctly
- reflect the current status of the configuration system. Python Bug 768469
-
-- Fixed: Call Tip Trimming May Loop Forever. Python Patch 769142 (Daniels)
-
-- Replaced apply(f, args, kwds) with f(*args, **kwargs) to improve performance
- Python Patch 768187
-
-- Break or continue statements outside a loop were causing IDLE crash
- Python Bug 767794
-
-- Convert Unicode strings from readline to IOBinding.encoding. Also set
- sys.std{in|out|err}.encoding, for both the local and the subprocess case.
- SF IDLEfork patch 682347.
-
-- Extend AboutDialog.ViewFile() to support file encodings. Make the CREDITS
- file Latin-1.
-
-- Updated the About dialog to reflect re-integration into Python. Provide
- buttons to display Python's NEWS, License, and Credits, plus additional
- buttons for IDLE's README and NEWS.
-
-- TextViewer() now has a third parameter which allows inserting text into the
- viewer instead of reading from a file.
-
-- (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of
- IDLEfork modified to install in the Python environment. The code in the
- interrupt module has been moved to thread.interrupt_main(). )
-
-- Printing the Shell window was failing if it was not saved first SF 748975
-
-- When using the Search in Files dialog, if the user had a selection
- highlighted in his Editor window, insert it into the dialog search field.
-
-- The Python Shell entry was disappearing from the Windows menu.
-
-- Update the Windows file list when a file name change occurs
-
-- Change to File / Open Module: always pop up the dialog, using the current
- selection as the default value. This is easier to use habitually.
-
-- Avoided a problem with starting the subprocess when 'localhost' doesn't
- resolve to the user's loopback interface. SF 747772
-
-- Fixed an issue with highlighted errors never de-colorizing. SF 747677. Also
- improved notification of Tabnanny Token Error.
-
-- File / New will by default save in the directory of the Edit window from
- which it was initiated. SF 748973 Guido van Rossum patch.
-
-
-What's New in IDLEfork 0.9b1?
-=============================
-*Release date: 02-Jun-2003*
-
-- The current working directory of the execution environment (and shell
- following completion of execution) is now that of the module being run.
-
-- Added the delete-exitfunc option to config-main.def. (This option is not
- included in the Options dialog.) Setting this to True (the default) will
- cause IDLE to not run sys.exitfunc/atexit when the subprocess exits.
-
-- IDLE now preserves the line ending codes when editing a file produced on
- a different platform. SF 661759, SF 538584
-
-- Reduced default editor font size to 10 point and increased window height
- to provide a better initial impression on Windows.
-
-- Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting
- the default font when first installed on Windows. SF 661676
-
-- Added Autosave feature: when user runs code from edit window, if the file
- has been modified IDLE will silently save it if Autosave is enabled. The
- option is set in the Options dialog, and the default is to prompt the
- user to save the file. SF 661318 Bruce Sherwood patch.
-
-- Improved the RESTART annotation in the shell window when the user restarts
- the shell while it is generating output. Also improved annotation when user
- repeatedly hammers the Ctrl-F6 restart.
-
-- Allow IDLE to run when not installed and cwd is not the IDLE directory
- SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael
-
-- When a module is run from an EditorWindow: if its directory is not in
- sys.path, prepend it. This allows the module to import other modules in
- the same directory. Do the same for a script run from the command line.
-
-- Correctly restart the subprocess if it is running user code and the user
- attempts to run some other module or restarts the shell. Do the same if
- the link is broken and it is possible to restart the subprocess and re-
- connect to the GUI. SF RFE 661321.
-
-- Improved exception reporting when running commands or scripts from the
- command line.
-
-- Added a -n command line switch to start IDLE without the subprocess.
- Removed the Shell menu when running in that mode. Updated help messages.
-
-- Added a comment to the shell startup header to indicate when IDLE is not
- using the subprocess.
-
-- Restore the ability to run without the subprocess. This can be important for
- some platforms or configurations. (Running without the subprocess allows the
- debugger to trace through parts of IDLE itself, which may or may not be
- desirable, depending on your point of view. In addition, the traditional
- reload/import tricks must be use if user source code is changed.) This is
- helpful for developing IDLE using IDLE, because one instance can be used to
- edit the code and a separate instance run to test changes. (Multiple
- concurrent IDLE instances with subprocesses is a future feature)
-
-- Improve the error message a user gets when saving a file with non-ASCII
- characters and no source encoding is specified. Done by adding a dialog
- 'EncodingMessage', which contains the line to add in a fixed-font entry
- widget, and which has a button to add that line to the file automatically.
- Also, add a configuration option 'EditorWindow/encoding', which has three
- possible values: none, utf-8, and locale. None is the default: IDLE will show
- this dialog when non-ASCII characters are encountered. utf-8 means that files
- with non-ASCII characters are saved as utf-8-with-bom. locale means that
- files are saved in the locale's encoding; the dialog is only displayed if the
- source contains characters outside the locale's charset. SF 710733 - Loewis
-
-- Improved I/O response by tweaking the wait parameter in various
- calls to signal.signal().
-
-- Implemented a threaded subprocess which allows interrupting a pass
- loop in user code using the 'interrupt' extension. User code runs
- in MainThread, while the RPCServer is handled by SockThread. This is
- necessary because Windows doesn't support signals.
-
-- Implemented the 'interrupt' extension module, which allows a subthread
- to raise a KeyboardInterrupt in the main thread.
-
-- Attempting to save the shell raised an error related to saving
- breakpoints, which are not implemented in the shell
-
-- Provide a correct message when 'exit' or 'quit' are entered at the
- IDLE command prompt SF 695861
-
-- Eliminate extra blank line in shell output caused by not flushing
- stdout when user code ends with an unterminated print. SF 695861
-
-- Moved responsibility for exception formatting (i.e. pruning IDLE internal
- calls) out of rpc.py into the client and server.
-
-- Exit IDLE cleanly even when doing subprocess I/O
-
-- Handle subprocess interrupt with an RPC message.
-
-- Restart the subprocess if it terminates itself. (VPython programs do that)
-
-- Support subclassing of exceptions, including in the shell, by moving the
- exception formatting to the subprocess.
-
-
-What's New in IDLEfork 0.9 Alpha 2?
-===================================
-*Release date: 27-Jan-2003*
-
-- Updated INSTALL.txt to claify use of the python2 rpm.
-
-- Improved formatting in IDLE Help.
-
-- Run menu: Replace "Run Script" with "Run Module".
-
-- Code encountering an unhandled exception under the debugger now shows
- the correct traceback, with IDLE internal levels pruned out.
-
-- If an exception occurs entirely in IDLE, don't prune the IDLE internal
- modules from the traceback displayed.
-
-- Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
-
-- IDLE icons will now install correctly even when setup.py is run from the
- build directory
-
-- Class Browser now compatible with Python2.3 version of pyclbr.py
-
-- Left cursor move in presence of selected text now moves from left end
- of the selection.
-
-- Add Meta keybindings to "IDLE Classic Windows" to handle reversed
- Alt/Meta on some Linux distros.
-
-- Change default: IDLE now starts with Python Shell.
-
-- Removed the File Path from the Additional Help Sources scrolled list.
-
-- Add capability to access Additional Help Sources on the web if the
- Help File Path begins with //http or www. (Otherwise local path is
- validated, as before.)
-
-- Additional Help Sources were not being posted on the Help menu in the
- order entered. Implement sorting the list by [HelpFiles] 'option'
- number.
-
-- Add Browse button to New Help Source dialog. Arrange to start in
- Python/Doc if platform is Windows, otherwise start in current directory.
-
-- Put the Additional Help Sources directly on the Help menu instead of in
- an Extra Help cascade menu. Rearrange the Help menu so the Additional
- Help Sources come last. Update help.txt appropriately.
-
-- Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
-
-- Uniform capitalization in General tab of ConfigDialog, update the doc string.
-
-- Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly
- deleting Additional Help Sources from the user's config file.
-
-- Make configHelpSourceEdit OK button the default and bind <Return>
-
-- Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached
- to parents.
-
-- Use os.startfile() to open both Additional Help and Python Help on the
- Windows platform. The application associated with the file type will act as
- the viewer. Windows help files (.chm) are now supported via the
- Settings/General/Additional Help facility.
-
-- If Python Help files are installed locally on Linux, use them instead of
- accessing python.org.
-
-- Make the methods for finding the Python help docs more robust, and make
- them work in the installed configuration, also.
-
-- On the Save Before Run dialog, make the OK button the default. One
- less mouse action!
-
-- Add a method: EditorWindow.get_geometry() for future use in implementing
- window location persistence.
-
-- Removed the "Help/Advice" menu entry. Thanks, David! We'll remember!
-
-- Change the "Classic Windows" theme's paste key to be <ctrl-v>.
-
-- Rearrange the Shell menu to put Stack Viewer entries adjacent.
-
-- Add the ability to restart the subprocess interpreter from the shell window;
- add an associated menu entry "Shell/Restart" with binding Control-F6. Update
- IDLE help.
-
-- Upon a restart, annotate the shell window with a "restart boundary". Add a
- shell window menu "Shell/View Restart" with binding F6 to jump to the most
- recent restart boundary.
-
-- Add Shell menu to Python Shell; change "Settings" to "Options".
-
-- Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
-
-- Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration.
-
-- In installer text, fix reference to Visual Python, should be VPython.
- Properly credit David Scherer.
-
-- Modified idle, idle.py, idle.pyw to improve exception handling.
-
-
-What's New in IDLEfork 0.9 Alpha 1?
-===================================
-*Release date: 31-Dec-2002*
-
-- First release of major new functionality. For further details refer to
- Idle-dev and/or the Sourceforge CVS.
-
-- Adapted to the Mac platform.
-
-- Overhauled the IDLE startup options and revised the idle -h help message,
- which provides details of command line usage.
-
-- Multiple bug fixes and usability enhancements.
-
-- Introduced the new RPC implementation, which includes a debugger. The output
- of user code is to the shell, and the shell may be used to inspect the
- environment after the run has finished. (In version 0.8.1 the shell
- environment was separate from the environment of the user code.)
-
-- Introduced the configuration GUI and a new About dialog.
-
-- Removed David Scherer's Remote Procedure Call code and replaced with Guido
- van Rossum's. GvR code has support for the IDLE debugger and uses the shell
- to inspect the environment of code Run from an Edit window. Files removed:
- ExecBinding.py, loader.py, protocol.py, Remote.py, spawn.py
-
---------------------------------------------------------------------
-Refer to HISTORY.txt for additional information on earlier releases.
---------------------------------------------------------------------
+------------------------------------------------------------------------
+Refer to NEWS2x.txt and HISTORY.txt for information on earlier releases.
+------------------------------------------------------------------------
diff --git a/Lib/idlelib/NEWS2x.txt b/Lib/idlelib/NEWS2x.txt
new file mode 100644
--- /dev/null
+++ b/Lib/idlelib/NEWS2x.txt
@@ -0,0 +1,660 @@
+What's New in IDLE 2.7? (Merged into 3.1 before 2.7 release.)
+=======================
+*Release date: XX-XXX-2010*
+
+- idle.py modified and simplified to better support developing experimental
+ versions of IDLE which are not installed in the standard location.
+
+- OutputWindow/PyShell right click menu "Go to file/line" wasn't working with
+ file paths containing spaces. Bug 5559.
+
+- Windows: Version string for the .chm help file changed, file not being
+ accessed Patch 5783 Guilherme Polo
+
+- Allow multiple IDLE GUI/subprocess pairs to exist simultaneously. Thanks to
+ David Scherer for suggesting the use of an ephemeral port for the GUI.
+ Patch 1529142 Weeble.
+
+- Remove port spec from run.py and fix bug where subprocess fails to
+ extract port from command line when warnings are present.
+
+- Tk 8.5 Text widget requires 'wordprocessor' tabstyle attr to handle
+ mixed space/tab properly. Issue 5129, patch by Guilherme Polo.
+
+- Issue #3549: On MacOS the preferences menu was not present
+
+- IDLE would print a "Unhandled server exception!" message when internal
+ debugging is enabled.
+
+- Issue #4455: IDLE failed to display the windows list when two windows have
+ the same title.
+
+- Issue #4383: When IDLE cannot make the connection to its subprocess, it would
+ fail to properly display the error message.
+
+- help() was not paging to the shell. Issue1650.
+
+- CodeContext was not importing.
+
+- Corrected two 3.0 compatibility errors reported by Mark Summerfield:
+ http://mail.python.org/pipermail/python-3000/2007-December/011491.html
+
+- Shell was not colorizing due to bug introduced at r57998, Bug 1586.
+
+- Issue #1585: IDLE uses non-existent xrange() function.
+
+- Windows EOL sequence not converted correctly, encoding error.
+ Caused file save to fail. Bug 1130.
+
+- IDLE converted to Python 3000 syntax.
+
+- Strings became Unicode.
+
+- CallTips module now uses the inspect module to produce the argspec.
+
+- IDLE modules now use absolute import instead of implied relative import.
+
+- atexit call replaces sys.exitfunc. The functionality of delete-exitfunc flag
+ in config-main.cfg remains unchanged: if set, registered exit functions will
+ be cleared before IDLE exits.
+
+
+What's New in IDLE 2.6
+======================
+*Release date: 01-Oct-2008*, merged into 3.0 releases detailed above (3.0rc2)
+
+- Issue #2665: On Windows, an IDLE installation upgraded from an old version
+ would not start if a custom theme was defined.
+
+- Home / Control-A toggles between left margin and end of leading white
+ space. issue1196903, patch by Jeff Shute.
+
+- Improved AutoCompleteWindow logic. issue2062, patch by Tal Einat.
+
+- Autocompletion of filenames now support alternate separators, e.g. the
+ '/' char on Windows. issue2061 Patch by Tal Einat.
+
+- Configured selection highlighting colors were ignored; updating highlighting
+ in the config dialog would cause non-Python files to be colored as if they
+ were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat.
+
+- ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat
+
+- There was an error on exit if no sys.exitfunc was defined. Issue 1647.
+
+- Could not open files in .idlerc directory if latter was hidden on Windows.
+ Issue 1743, Issue 1862.
+
+- Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat.
+
+- tabpage.py updated: tabbedPages.py now supports multiple dynamic rows
+ of tabs. Patch 1612746 Tal Einat.
+
+- Add confirmation dialog before printing. Patch 1717170 Tal Einat.
+
+- Show paste position if > 80 col. Patch 1659326 Tal Einat.
+
+- Update cursor color without restarting. Patch 1725576 Tal Einat.
+
+- Allow keyboard interrupt only when user code is executing in subprocess.
+ Patch 1225 Tal Einat (reworked from IDLE-Spoon).
+
+- configDialog cleanup. Patch 1730217 Tal Einat.
+
+- textView cleanup. Patch 1718043 Tal Einat.
+
+- Clean up EditorWindow close.
+
+- Patch 1693258: Fix for duplicate "preferences" menu-OS X. Backport of r56204.
+
+- OSX: Avoid crash for those versions of Tcl/Tk which don't have a console
+
+- Bug in idlelib.MultiCall: Options dialog was crashing IDLE if there was an
+ option in config-extensions w/o a value. Patch #1672481, Tal Einat
+
+- Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;
+ mouse and cursor selection in ACWindow implemented; double Tab inserts
+ current selection and closes ACW (similar to double-click and Return); scroll
+ wheel now works in ACW. Added AutoComplete instructions to IDLE Help.
+
+- AutoCompleteWindow moved below input line, will move above if there
+ isn't enough space. Patch 1621265 Tal Einat
+
+- Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
+ Suggested solution by Christos Georgiou, Bug 791968.
+
+- Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
+
+- Avoid hang when encountering a duplicate in a completion list. Bug 1571112.
+
+- Patch #1362975: Rework CodeContext indentation algorithm to
+ avoid hard-coding pixel widths.
+
+- Bug #813342: Start the IDLE subprocess with -Qnew if the parent
+ is started with that option.
+
+- Honor the "Cancel" action in the save dialog (Debian bug #299092)
+
+- Some syntax errors were being caught by tokenize during the tabnanny
+ check, resulting in obscure error messages. Do the syntax check
+ first. Bug 1562716, 1562719
+
+- IDLE's version number takes a big jump to match the version number of
+ the Python release of which it's a part.
+
+
+What's New in IDLE 1.2?
+=======================
+*Release date: 19-SEP-2006*
+
+- File menu hotkeys: there were three 'p' assignments. Reassign the
+ 'Save Copy As' and 'Print' hotkeys to 'y' and 't'. Change the
+ Shell hotkey from 's' to 'l'.
+
+- IDLE honors new quit() and exit() commands from site.py Quitter() object.
+ Patch 1540892, Jim Jewett
+
+- The 'with' statement is now a Code Context block opener.
+ Patch 1540851, Jim Jewett
+
+- Retrieval of previous shell command was not always preserving indentation
+ (since 1.2a1) Patch 1528468 Tal Einat.
+
+- Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1)
+
+- ToggleTab dialog was setting indent to 8 even if cancelled (since 1.2a1).
+
+- When used w/o subprocess, all exceptions were preceded by an error
+ message claiming they were IDLE internal errors (since 1.2a1).
+
+- Bug #1525817: Don't truncate short lines in IDLE's tool tips.
+
+- Bug #1517990: IDLE keybindings on MacOS X now work correctly
+
+- Bug #1517996: IDLE now longer shows the default Tk menu when a
+ path browser, class browser or debugger is the frontmost window on MacOS X
+
+- EditorWindow.test() was failing. Bug 1417598
+
+- EditorWindow failed when used stand-alone if sys.ps1 not set.
+ Bug 1010370 Dave Florek
+
+- Tooltips failed on new-syle class __init__ args. Bug 1027566 Loren Guthrie
+
+- Avoid occasional failure to detect closing paren properly.
+ Patch 1407280 Tal Einat
+
+- Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168.
+
+- Colorizer now handles #<builtin> correctly, also unicode strings and
+ 'as' keyword in comment directly following import command. Closes 1325071.
+ Patch 1479219 Tal Einat
+
+- Patch #1162825: Support non-ASCII characters in IDLE window titles.
+
+- Source file f.flush() after writing; trying to avoid lossage if user
+ kills GUI.
+
+- Options / Keys / Advanced dialog made functional. Also, allow binding
+ of 'movement' keys.
+
+- 'syntax' patch adds improved calltips and a new class attribute listbox.
+ MultiCall module allows binding multiple actions to an event.
+ Patch 906702 Noam Raphael
+
+- Better indentation after first line of string continuation.
+ IDLEfork Patch 681992, Noam Raphael
+
+- Fixed CodeContext alignment problem, following suggestion from Tal Einat.
+
+- Increased performance in CodeContext extension Patch 936169 Noam Raphael
+
+- Mac line endings were incorrect when pasting code from some browsers
+ when using X11 and the Fink distribution. Python Bug 1263656.
+
+- <Enter> when cursor is on a previous command retrieves that command. Instead
+ of replacing the input line, the previous command is now appended to the
+ input line. Indentation is preserved, and undo is enabled.
+ Patch 1196917 Jeff Shute
+
+- Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with
+ the Untabify command.
+
+- Corrected "tab/space" Error Dialog to show correct menu for Untabify.
+ Patch 1196980 Jeff Shute
+
+- New files are colorized by default, and colorizing is removed when
+ saving as non-Python files. Patch 1196895 Jeff Shute
+ Closes Python Bugs 775012 and 800432, partial fix IDLEfork 763524
+
+- Improve subprocess link error notification.
+
+- run.py: use Queue's blocking feature instead of sleeping in the main
+ loop. Patch # 1190163 Michiel de Hoon
+
+- Add config-main option to make the 'history' feature non-cyclic.
+ Default remains cyclic. Python Patch 914546 Noam Raphael.
+
+- Removed ability to configure tabs indent from Options dialog. This 'feature'
+ has never worked and no one has complained. It is still possible to set a
+ default tabs (v. spaces) indent 'manually' via config-main.def (or to turn on
+ tabs for the current EditorWindow via the Format menu) but IDLE will
+ encourage indentation via spaces.
+
+- Enable setting the indentation width using the Options dialog.
+ Bug # 783877
+
+- Add keybindings for del-word-left and del-word-right.
+
+- Discourage using an indent width other than 8 when using tabs to indent
+ Python code.
+
+- Restore use of EditorWindow.set_indentation_params(), was dead code since
+ Autoindent was merged into EditorWindow. This allows IDLE to conform to the
+ indentation width of a loaded file. (But it still will not switch to tabs
+ even if the file uses tabs.) Any change in indent width is local to that
+ window.
+
+- Add Tabnanny check before Run/F5, not just when Checking module.
+
+- If an extension can't be loaded, print warning and skip it instead of
+ erroring out.
+
+- Improve error handling when .idlerc can't be created (warn and exit).
+
+- The GUI was hanging if the shell window was closed while a raw_input()
+ was pending. Restored the quit() of the readline() mainloop().
+ http://mail.python.org/pipermail/idle-dev/2004-December/002307.html
+
+- The remote procedure call module rpc.py can now access data attributes of
+ remote registered objects. Changes to these attributes are local, however.
+
+
+What's New in IDLE 1.1?
+=======================
+*Release date: 30-NOV-2004*
+
+- On OpenBSD, terminating IDLE with ctrl-c from the command line caused a
+ stuck subprocess MainThread because only the SocketThread was exiting.
+
+- Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set"
+ button) caused IDLE to fail on restart (no new keyset was created in
+ config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535.
+
+- A change to the linecache.py API caused IDLE to exit when an exception was
+ raised while running without the subprocess (-n switch). Python Bug 1063840.
+
+- When paragraph reformat width was made configurable, a bug was
+ introduced that caused reformatting of comment blocks to ignore how
+ far the block was indented, effectively adding the indentation width
+ to the reformat width. This has been repaired, and the reformat
+ width is again a bound on the total width of reformatted lines.
+
+- Improve keyboard focus binding, especially in Windows menu. Improve
+ window raising, especially in the Windows menu and in the debugger.
+ IDLEfork 763524.
+
+- If user passes a non-existent filename on the commandline, just
+ open a new file, don't raise a dialog. IDLEfork 854928.
+
+- EditorWindow.py was not finding the .chm help file on Windows. Typo
+ at Rev 1.54. Python Bug 990954
+
+- checking sys.platform for substring 'win' was breaking IDLE docs on Mac
+ (darwin). Also, Mac Safari browser requires full file:// URIs. SF 900580.
+
+- Redirect the warning stream to the shell during the ScriptBinding check of
+ user code and format the warning similarly to an exception for both that
+ check and for runtime warnings raised in the subprocess.
+
+- CodeContext hint pane visibility state is now persistent across sessions.
+ The pane no longer appears in the shell window. Added capability to limit
+ extensions to shell window or editor windows. Noam Raphael addition
+ to Patch 936169.
+
+- Paragraph reformat width is now a configurable parameter in the
+ Options GUI.
+
+- New Extension: CodeContext. Provides block structuring hints for code
+ which has scrolled above an edit window. Patch 936169 Noam Raphael.
+
+- If nulls somehow got into the strings in recent-files.lst
+ EditorWindow.update_recent_files_list() was failing. Python Bug 931336.
+
+- If the normal background is changed via Configure/Highlighting, it will
+ update immediately, thanks to the previously mentioned patch by Nigel Rowe.
+
+- Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe
+ This also fixed IDLEfork bug [ 693418 ] Normal text background color not
+ refreshed and Python bug [897872 ] Unknown color name on HP-UX
+
+- rpc.py:SocketIO - Large modules were generating large pickles when downloaded
+ to the execution server. The return of the OK response from the subprocess
+ initialization was interfering and causing the sending socket to be not
+ ready. Add an IO ready test to fix this. Moved the polling IO ready test
+ into pollpacket().
+
+- Fix typo in rpc.py, s/b "pickle.PicklingError" not "pickle.UnpicklingError".
+
+- Added a Tk error dialog to run.py inform the user if the subprocess can't
+ connect to the user GUI process. Added a timeout to the GUI's listening
+ socket. Added Tk error dialogs to PyShell.py to announce a failure to bind
+ the port or connect to the subprocess. Clean up error handling during
+ connection initiation phase. This is an update of Python Patch 778323.
+
+- Print correct exception even if source file changed since shell was
+ restarted. IDLEfork Patch 869012 Noam Raphael
+
+- Keybindings with the Shift modifier now work correctly. So do bindings which
+ use the Space key. Limit unmodified user keybindings to the function keys.
+ Python Bug 775353, IDLEfork Bugs 755647, 761557
+
+- After an exception, run.py was not setting the exception vector. Noam
+ Raphael suggested correcting this so pdb's postmortem pm() would work.
+ IDLEfork Patch 844675
+
+- IDLE now does not fail to save the file anymore if the Tk buffer is not a
+ Unicode string, yet eol_convention is. Python Bugs 774680, 788378
+
+- IDLE didn't start correctly when Python was installed in "Program Files" on
+ W2K and XP. Python Bugs 780451, 784183
+
+- config-main.def documentation incorrectly referred to idle- instead of
+ config- filenames. SF 782759 Also added note about .idlerc location.
+
+
+What's New in IDLE 1.0?
+=======================
+*Release date: 29-Jul-2003*
+
+- Added a banner to the shell discussing warnings possibly raised by personal
+ firewall software. Added same comment to README.txt.
+
+- Calltip error when docstring was None Python Bug 775541
+
+- Updated extend.txt, help.txt, and config-extensions.def to correctly
+ reflect the current status of the configuration system. Python Bug 768469
+
+- Fixed: Call Tip Trimming May Loop Forever. Python Patch 769142 (Daniels)
+
+- Replaced apply(f, args, kwds) with f(*args, **kwargs) to improve performance
+ Python Patch 768187
+
+- Break or continue statements outside a loop were causing IDLE crash
+ Python Bug 767794
+
+- Convert Unicode strings from readline to IOBinding.encoding. Also set
+ sys.std{in|out|err}.encoding, for both the local and the subprocess case.
+ SF IDLEfork patch 682347.
+
+- Extend AboutDialog.ViewFile() to support file encodings. Make the CREDITS
+ file Latin-1.
+
+- Updated the About dialog to reflect re-integration into Python. Provide
+ buttons to display Python's NEWS, License, and Credits, plus additional
+ buttons for IDLE's README and NEWS.
+
+- TextViewer() now has a third parameter which allows inserting text into the
+ viewer instead of reading from a file.
+
+- (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of
+ IDLEfork modified to install in the Python environment. The code in the
+ interrupt module has been moved to thread.interrupt_main(). )
+
+- Printing the Shell window was failing if it was not saved first SF 748975
+
+- When using the Search in Files dialog, if the user had a selection
+ highlighted in his Editor window, insert it into the dialog search field.
+
+- The Python Shell entry was disappearing from the Windows menu.
+
+- Update the Windows file list when a file name change occurs
+
+- Change to File / Open Module: always pop up the dialog, using the current
+ selection as the default value. This is easier to use habitually.
+
+- Avoided a problem with starting the subprocess when 'localhost' doesn't
+ resolve to the user's loopback interface. SF 747772
+
+- Fixed an issue with highlighted errors never de-colorizing. SF 747677. Also
+ improved notification of Tabnanny Token Error.
+
+- File / New will by default save in the directory of the Edit window from
+ which it was initiated. SF 748973 Guido van Rossum patch.
+
+
+What's New in IDLEfork 0.9b1?
+=============================
+*Release date: 02-Jun-2003*
+
+- The current working directory of the execution environment (and shell
+ following completion of execution) is now that of the module being run.
+
+- Added the delete-exitfunc option to config-main.def. (This option is not
+ included in the Options dialog.) Setting this to True (the default) will
+ cause IDLE to not run sys.exitfunc/atexit when the subprocess exits.
+
+- IDLE now preserves the line ending codes when editing a file produced on
+ a different platform. SF 661759, SF 538584
+
+- Reduced default editor font size to 10 point and increased window height
+ to provide a better initial impression on Windows.
+
+- Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting
+ the default font when first installed on Windows. SF 661676
+
+- Added Autosave feature: when user runs code from edit window, if the file
+ has been modified IDLE will silently save it if Autosave is enabled. The
+ option is set in the Options dialog, and the default is to prompt the
+ user to save the file. SF 661318 Bruce Sherwood patch.
+
+- Improved the RESTART annotation in the shell window when the user restarts
+ the shell while it is generating output. Also improved annotation when user
+ repeatedly hammers the Ctrl-F6 restart.
+
+- Allow IDLE to run when not installed and cwd is not the IDLE directory
+ SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael
+
+- When a module is run from an EditorWindow: if its directory is not in
+ sys.path, prepend it. This allows the module to import other modules in
+ the same directory. Do the same for a script run from the command line.
+
+- Correctly restart the subprocess if it is running user code and the user
+ attempts to run some other module or restarts the shell. Do the same if
+ the link is broken and it is possible to restart the subprocess and re-
+ connect to the GUI. SF RFE 661321.
+
+- Improved exception reporting when running commands or scripts from the
+ command line.
+
+- Added a -n command line switch to start IDLE without the subprocess.
+ Removed the Shell menu when running in that mode. Updated help messages.
+
+- Added a comment to the shell startup header to indicate when IDLE is not
+ using the subprocess.
+
+- Restore the ability to run without the subprocess. This can be important for
+ some platforms or configurations. (Running without the subprocess allows the
+ debugger to trace through parts of IDLE itself, which may or may not be
+ desirable, depending on your point of view. In addition, the traditional
+ reload/import tricks must be use if user source code is changed.) This is
+ helpful for developing IDLE using IDLE, because one instance can be used to
+ edit the code and a separate instance run to test changes. (Multiple
+ concurrent IDLE instances with subprocesses is a future feature)
+
+- Improve the error message a user gets when saving a file with non-ASCII
+ characters and no source encoding is specified. Done by adding a dialog
+ 'EncodingMessage', which contains the line to add in a fixed-font entry
+ widget, and which has a button to add that line to the file automatically.
+ Also, add a configuration option 'EditorWindow/encoding', which has three
+ possible values: none, utf-8, and locale. None is the default: IDLE will show
+ this dialog when non-ASCII characters are encountered. utf-8 means that files
+ with non-ASCII characters are saved as utf-8-with-bom. locale means that
+ files are saved in the locale's encoding; the dialog is only displayed if the
+ source contains characters outside the locale's charset. SF 710733 - Loewis
+
+- Improved I/O response by tweaking the wait parameter in various
+ calls to signal.signal().
+
+- Implemented a threaded subprocess which allows interrupting a pass
+ loop in user code using the 'interrupt' extension. User code runs
+ in MainThread, while the RPCServer is handled by SockThread. This is
+ necessary because Windows doesn't support signals.
+
+- Implemented the 'interrupt' extension module, which allows a subthread
+ to raise a KeyboardInterrupt in the main thread.
+
+- Attempting to save the shell raised an error related to saving
+ breakpoints, which are not implemented in the shell
+
+- Provide a correct message when 'exit' or 'quit' are entered at the
+ IDLE command prompt SF 695861
+
+- Eliminate extra blank line in shell output caused by not flushing
+ stdout when user code ends with an unterminated print. SF 695861
+
+- Moved responsibility for exception formatting (i.e. pruning IDLE internal
+ calls) out of rpc.py into the client and server.
+
+- Exit IDLE cleanly even when doing subprocess I/O
+
+- Handle subprocess interrupt with an RPC message.
+
+- Restart the subprocess if it terminates itself. (VPython programs do that)
+
+- Support subclassing of exceptions, including in the shell, by moving the
+ exception formatting to the subprocess.
+
+
+What's New in IDLEfork 0.9 Alpha 2?
+===================================
+*Release date: 27-Jan-2003*
+
+- Updated INSTALL.txt to claify use of the python2 rpm.
+
+- Improved formatting in IDLE Help.
+
+- Run menu: Replace "Run Script" with "Run Module".
+
+- Code encountering an unhandled exception under the debugger now shows
+ the correct traceback, with IDLE internal levels pruned out.
+
+- If an exception occurs entirely in IDLE, don't prune the IDLE internal
+ modules from the traceback displayed.
+
+- Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
+
+- IDLE icons will now install correctly even when setup.py is run from the
+ build directory
+
+- Class Browser now compatible with Python2.3 version of pyclbr.py
+
+- Left cursor move in presence of selected text now moves from left end
+ of the selection.
+
+- Add Meta keybindings to "IDLE Classic Windows" to handle reversed
+ Alt/Meta on some Linux distros.
+
+- Change default: IDLE now starts with Python Shell.
+
+- Removed the File Path from the Additional Help Sources scrolled list.
+
+- Add capability to access Additional Help Sources on the web if the
+ Help File Path begins with //http or www. (Otherwise local path is
+ validated, as before.)
+
+- Additional Help Sources were not being posted on the Help menu in the
+ order entered. Implement sorting the list by [HelpFiles] 'option'
+ number.
+
+- Add Browse button to New Help Source dialog. Arrange to start in
+ Python/Doc if platform is Windows, otherwise start in current directory.
+
+- Put the Additional Help Sources directly on the Help menu instead of in
+ an Extra Help cascade menu. Rearrange the Help menu so the Additional
+ Help Sources come last. Update help.txt appropriately.
+
+- Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
+
+- Uniform capitalization in General tab of ConfigDialog, update the doc string.
+
+- Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly
+ deleting Additional Help Sources from the user's config file.
+
+- Make configHelpSourceEdit OK button the default and bind <Return>
+
+- Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached
+ to parents.
+
+- Use os.startfile() to open both Additional Help and Python Help on the
+ Windows platform. The application associated with the file type will act as
+ the viewer. Windows help files (.chm) are now supported via the
+ Settings/General/Additional Help facility.
+
+- If Python Help files are installed locally on Linux, use them instead of
+ accessing python.org.
+
+- Make the methods for finding the Python help docs more robust, and make
+ them work in the installed configuration, also.
+
+- On the Save Before Run dialog, make the OK button the default. One
+ less mouse action!
+
+- Add a method: EditorWindow.get_geometry() for future use in implementing
+ window location persistence.
+
+- Removed the "Help/Advice" menu entry. Thanks, David! We'll remember!
+
+- Change the "Classic Windows" theme's paste key to be <ctrl-v>.
+
+- Rearrange the Shell menu to put Stack Viewer entries adjacent.
+
+- Add the ability to restart the subprocess interpreter from the shell window;
+ add an associated menu entry "Shell/Restart" with binding Control-F6. Update
+ IDLE help.
+
+- Upon a restart, annotate the shell window with a "restart boundary". Add a
+ shell window menu "Shell/View Restart" with binding F6 to jump to the most
+ recent restart boundary.
+
+- Add Shell menu to Python Shell; change "Settings" to "Options".
+
+- Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
+
+- Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration.
+
+- In installer text, fix reference to Visual Python, should be VPython.
+ Properly credit David Scherer.
+
+- Modified idle, idle.py, idle.pyw to improve exception handling.
+
+
+What's New in IDLEfork 0.9 Alpha 1?
+===================================
+*Release date: 31-Dec-2002*
+
+- First release of major new functionality. For further details refer to
+ Idle-dev and/or the Sourceforge CVS.
+
+- Adapted to the Mac platform.
+
+- Overhauled the IDLE startup options and revised the idle -h help message,
+ which provides details of command line usage.
+
+- Multiple bug fixes and usability enhancements.
+
+- Introduced the new RPC implementation, which includes a debugger. The output
+ of user code is to the shell, and the shell may be used to inspect the
+ environment after the run has finished. (In version 0.8.1 the shell
+ environment was separate from the environment of the user code.)
+
+- Introduced the configuration GUI and a new About dialog.
+
+- Removed David Scherer's Remote Procedure Call code and replaced with Guido
+ van Rossum's. GvR code has support for the IDLE debugger and uses the shell
+ to inspect the environment of code Run from an Edit window. Files removed:
+ ExecBinding.py, loader.py, protocol.py, Remote.py, spawn.py
+
+--------------------------------------------------------------------
+Refer to HISTORY.txt for additional information on earlier releases.
+--------------------------------------------------------------------
--
Repository URL: https://hg.python.org/cpython
1
0
https://hg.python.org/cpython/rev/73ee3b73ce66
changeset: 104170:73ee3b73ce66
parent: 104166:6619b76053a5
parent: 104169:454af5880b40
user: Terry Jan Reedy <tjreedy(a)udel.edu>
date: Fri Sep 30 00:02:42 2016 -0400
summary:
Merge with 3.6
files:
Lib/idlelib/NEWS.txt | 686 +----------------------------
Lib/idlelib/NEWS2x.txt | 660 +++++++++++++++++++++++++++
2 files changed, 669 insertions(+), 677 deletions(-)
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt
--- a/Lib/idlelib/NEWS.txt
+++ b/Lib/idlelib/NEWS.txt
@@ -383,7 +383,7 @@
- Issue # 12510: Attempt to get certain tool tips no longer crashes IDLE.
Erroneous tool tips have been corrected. Default added for callables.
-- Issue10365: File open dialog now works instead of crashing even when
+- Issue #10365: File open dialog now works instead of crashing even when
parent window is closed while dialog is open.
- Issue 14876: use user-selected font for highlight configuration.
@@ -419,23 +419,18 @@
- Issue #1028: Ctrl-space binding to show completions was causing IDLE to exit.
Tk < 8.5 was sending invalid Unicode null; replaced with valid null.
-- <Home> toggle failing on Tk 8.5, causing IDLE exits and strange selection
- behavior. Issue 4676. Improve selection extension behaviour.
+- Issue #4676: <Home> toggle failing on Tk 8.5, causing IDLE exits and strange selection
+ behavior. Improve selection extension behaviour.
-- <Home> toggle non-functional when NumLock set on Windows. Issue 3851.
+- Issue #3851: <Home> toggle non-functional when NumLock set on Windows.
What's New in IDLE 3.1b1?
=========================
*Release date: 06-May-09*
-- Use of 'filter' in keybindingDialog.py was causing custom key assignment to
- fail. Patch 5707 amaury.forgeotdarc.
-
-
-What's New in IDLE 3.1a1?
-=========================
-*Release date: 07-Mar-09*
+- Issue #5707: Use of 'filter' in keybindingDialog.py was causing custom key assignment to
+ fail. Patch by Amaury Forgeot d'Arc.
- Issue #4815: Offer conversion to UTF-8 if source files have
no encoding declaration and are not encoded in UTF-8.
@@ -450,669 +445,6 @@
- Issue #2665: On Windows, an IDLE installation upgraded from an old version
would not start if a custom theme was defined.
-
-What's New in IDLE 2.7? (UNRELEASED, but merged into 3.1 releases above.)
-=======================
-*Release date: XX-XXX-2010*
-
-- idle.py modified and simplified to better support developing experimental
- versions of IDLE which are not installed in the standard location.
-
-- OutputWindow/PyShell right click menu "Go to file/line" wasn't working with
- file paths containing spaces. Bug 5559.
-
-- Windows: Version string for the .chm help file changed, file not being
- accessed Patch 5783 Guilherme Polo
-
-- Allow multiple IDLE GUI/subprocess pairs to exist simultaneously. Thanks to
- David Scherer for suggesting the use of an ephemeral port for the GUI.
- Patch 1529142 Weeble.
-
-- Remove port spec from run.py and fix bug where subprocess fails to
- extract port from command line when warnings are present.
-
-- Tk 8.5 Text widget requires 'wordprocessor' tabstyle attr to handle
- mixed space/tab properly. Issue 5129, patch by Guilherme Polo.
-
-- Issue #3549: On MacOS the preferences menu was not present
-
-
-What's New in IDLE 3.0?
-=======================
-*Release date: 03-Dec-2008*
-
-- IDLE would print a "Unhandled server exception!" message when internal
- debugging is enabled.
-
-- Issue #4455: IDLE failed to display the windows list when two windows have
- the same title.
-
-- Issue #4383: When IDLE cannot make the connection to its subprocess, it would
- fail to properly display the error message.
-
-- help() was not paging to the shell. Issue1650.
-
-- CodeContext was not importing.
-
-- Corrected two 3.0 compatibility errors reported by Mark Summerfield:
- http://mail.python.org/pipermail/python-3000/2007-December/011491.html
-
-- Shell was not colorizing due to bug introduced at r57998, Bug 1586.
-
-- Issue #1585: IDLE uses non-existent xrange() function.
-
-- Windows EOL sequence not converted correctly, encoding error.
- Caused file save to fail. Bug 1130.
-
-- IDLE converted to Python 3000 syntax.
-
-- Strings became Unicode.
-
-- CallTips module now uses the inspect module to produce the argspec.
-
-- IDLE modules now use absolute import instead of implied relative import.
-
-- atexit call replaces sys.exitfunc. The functionality of delete-exitfunc flag
- in config-main.cfg remains unchanged: if set, registered exit functions will
- be cleared before IDLE exits.
-
-
-What's New in IDLE 2.6
-======================
-*Release date: 01-Oct-2008*, merged into 3.0 releases detailed above (3.0rc2)
-
-- Issue #2665: On Windows, an IDLE installation upgraded from an old version
- would not start if a custom theme was defined.
-
-- Home / Control-A toggles between left margin and end of leading white
- space. issue1196903, patch by Jeff Shute.
-
-- Improved AutoCompleteWindow logic. issue2062, patch by Tal Einat.
-
-- Autocompletion of filenames now support alternate separators, e.g. the
- '/' char on Windows. issue2061 Patch by Tal Einat.
-
-- Configured selection highlighting colors were ignored; updating highlighting
- in the config dialog would cause non-Python files to be colored as if they
- were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat.
-
-- ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat
-
-- There was an error on exit if no sys.exitfunc was defined. Issue 1647.
-
-- Could not open files in .idlerc directory if latter was hidden on Windows.
- Issue 1743, Issue 1862.
-
-- Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat.
-
-- tabpage.py updated: tabbedPages.py now supports multiple dynamic rows
- of tabs. Patch 1612746 Tal Einat.
-
-- Add confirmation dialog before printing. Patch 1717170 Tal Einat.
-
-- Show paste position if > 80 col. Patch 1659326 Tal Einat.
-
-- Update cursor color without restarting. Patch 1725576 Tal Einat.
-
-- Allow keyboard interrupt only when user code is executing in subprocess.
- Patch 1225 Tal Einat (reworked from IDLE-Spoon).
-
-- configDialog cleanup. Patch 1730217 Tal Einat.
-
-- textView cleanup. Patch 1718043 Tal Einat.
-
-- Clean up EditorWindow close.
-
-- Patch 1693258: Fix for duplicate "preferences" menu-OS X. Backport of r56204.
-
-- OSX: Avoid crash for those versions of Tcl/Tk which don't have a console
-
-- Bug in idlelib.MultiCall: Options dialog was crashing IDLE if there was an
- option in config-extensions w/o a value. Patch #1672481, Tal Einat
-
-- Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;
- mouse and cursor selection in ACWindow implemented; double Tab inserts
- current selection and closes ACW (similar to double-click and Return); scroll
- wheel now works in ACW. Added AutoComplete instructions to IDLE Help.
-
-- AutoCompleteWindow moved below input line, will move above if there
- isn't enough space. Patch 1621265 Tal Einat
-
-- Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
- Suggested solution by Christos Georgiou, Bug 791968.
-
-- Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
-
-- Avoid hang when encountering a duplicate in a completion list. Bug 1571112.
-
-- Patch #1362975: Rework CodeContext indentation algorithm to
- avoid hard-coding pixel widths.
-
-- Bug #813342: Start the IDLE subprocess with -Qnew if the parent
- is started with that option.
-
-- Honor the "Cancel" action in the save dialog (Debian bug #299092)
-
-- Some syntax errors were being caught by tokenize during the tabnanny
- check, resulting in obscure error messages. Do the syntax check
- first. Bug 1562716, 1562719
-
-- IDLE's version number takes a big jump to match the version number of
- the Python release of which it's a part.
-
-
-What's New in IDLE 1.2?
-=======================
-*Release date: 19-SEP-2006*
-
-- File menu hotkeys: there were three 'p' assignments. Reassign the
- 'Save Copy As' and 'Print' hotkeys to 'y' and 't'. Change the
- Shell hotkey from 's' to 'l'.
-
-- IDLE honors new quit() and exit() commands from site.py Quitter() object.
- Patch 1540892, Jim Jewett
-
-- The 'with' statement is now a Code Context block opener.
- Patch 1540851, Jim Jewett
-
-- Retrieval of previous shell command was not always preserving indentation
- (since 1.2a1) Patch 1528468 Tal Einat.
-
-- Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1)
-
-- ToggleTab dialog was setting indent to 8 even if cancelled (since 1.2a1).
-
-- When used w/o subprocess, all exceptions were preceded by an error
- message claiming they were IDLE internal errors (since 1.2a1).
-
-- Bug #1525817: Don't truncate short lines in IDLE's tool tips.
-
-- Bug #1517990: IDLE keybindings on MacOS X now work correctly
-
-- Bug #1517996: IDLE now longer shows the default Tk menu when a
- path browser, class browser or debugger is the frontmost window on MacOS X
-
-- EditorWindow.test() was failing. Bug 1417598
-
-- EditorWindow failed when used stand-alone if sys.ps1 not set.
- Bug 1010370 Dave Florek
-
-- Tooltips failed on new-syle class __init__ args. Bug 1027566 Loren Guthrie
-
-- Avoid occasional failure to detect closing paren properly.
- Patch 1407280 Tal Einat
-
-- Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168.
-
-- Colorizer now handles #<builtin> correctly, also unicode strings and
- 'as' keyword in comment directly following import command. Closes 1325071.
- Patch 1479219 Tal Einat
-
-- Patch #1162825: Support non-ASCII characters in IDLE window titles.
-
-- Source file f.flush() after writing; trying to avoid lossage if user
- kills GUI.
-
-- Options / Keys / Advanced dialog made functional. Also, allow binding
- of 'movement' keys.
-
-- 'syntax' patch adds improved calltips and a new class attribute listbox.
- MultiCall module allows binding multiple actions to an event.
- Patch 906702 Noam Raphael
-
-- Better indentation after first line of string continuation.
- IDLEfork Patch 681992, Noam Raphael
-
-- Fixed CodeContext alignment problem, following suggestion from Tal Einat.
-
-- Increased performance in CodeContext extension Patch 936169 Noam Raphael
-
-- Mac line endings were incorrect when pasting code from some browsers
- when using X11 and the Fink distribution. Python Bug 1263656.
-
-- <Enter> when cursor is on a previous command retrieves that command. Instead
- of replacing the input line, the previous command is now appended to the
- input line. Indentation is preserved, and undo is enabled.
- Patch 1196917 Jeff Shute
-
-- Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with
- the Untabify command.
-
-- Corrected "tab/space" Error Dialog to show correct menu for Untabify.
- Patch 1196980 Jeff Shute
-
-- New files are colorized by default, and colorizing is removed when
- saving as non-Python files. Patch 1196895 Jeff Shute
- Closes Python Bugs 775012 and 800432, partial fix IDLEfork 763524
-
-- Improve subprocess link error notification.
-
-- run.py: use Queue's blocking feature instead of sleeping in the main
- loop. Patch # 1190163 Michiel de Hoon
-
-- Add config-main option to make the 'history' feature non-cyclic.
- Default remains cyclic. Python Patch 914546 Noam Raphael.
-
-- Removed ability to configure tabs indent from Options dialog. This 'feature'
- has never worked and no one has complained. It is still possible to set a
- default tabs (v. spaces) indent 'manually' via config-main.def (or to turn on
- tabs for the current EditorWindow via the Format menu) but IDLE will
- encourage indentation via spaces.
-
-- Enable setting the indentation width using the Options dialog.
- Bug # 783877
-
-- Add keybindings for del-word-left and del-word-right.
-
-- Discourage using an indent width other than 8 when using tabs to indent
- Python code.
-
-- Restore use of EditorWindow.set_indentation_params(), was dead code since
- Autoindent was merged into EditorWindow. This allows IDLE to conform to the
- indentation width of a loaded file. (But it still will not switch to tabs
- even if the file uses tabs.) Any change in indent width is local to that
- window.
-
-- Add Tabnanny check before Run/F5, not just when Checking module.
-
-- If an extension can't be loaded, print warning and skip it instead of
- erroring out.
-
-- Improve error handling when .idlerc can't be created (warn and exit).
-
-- The GUI was hanging if the shell window was closed while a raw_input()
- was pending. Restored the quit() of the readline() mainloop().
- http://mail.python.org/pipermail/idle-dev/2004-December/002307.html
-
-- The remote procedure call module rpc.py can now access data attributes of
- remote registered objects. Changes to these attributes are local, however.
-
-
-What's New in IDLE 1.1?
-=======================
-*Release date: 30-NOV-2004*
-
-- On OpenBSD, terminating IDLE with ctrl-c from the command line caused a
- stuck subprocess MainThread because only the SocketThread was exiting.
-
-- Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set"
- button) caused IDLE to fail on restart (no new keyset was created in
- config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535.
-
-- A change to the linecache.py API caused IDLE to exit when an exception was
- raised while running without the subprocess (-n switch). Python Bug 1063840.
-
-- When paragraph reformat width was made configurable, a bug was
- introduced that caused reformatting of comment blocks to ignore how
- far the block was indented, effectively adding the indentation width
- to the reformat width. This has been repaired, and the reformat
- width is again a bound on the total width of reformatted lines.
-
-- Improve keyboard focus binding, especially in Windows menu. Improve
- window raising, especially in the Windows menu and in the debugger.
- IDLEfork 763524.
-
-- If user passes a non-existent filename on the commandline, just
- open a new file, don't raise a dialog. IDLEfork 854928.
-
-- EditorWindow.py was not finding the .chm help file on Windows. Typo
- at Rev 1.54. Python Bug 990954
-
-- checking sys.platform for substring 'win' was breaking IDLE docs on Mac
- (darwin). Also, Mac Safari browser requires full file:// URIs. SF 900580.
-
-- Redirect the warning stream to the shell during the ScriptBinding check of
- user code and format the warning similarly to an exception for both that
- check and for runtime warnings raised in the subprocess.
-
-- CodeContext hint pane visibility state is now persistent across sessions.
- The pane no longer appears in the shell window. Added capability to limit
- extensions to shell window or editor windows. Noam Raphael addition
- to Patch 936169.
-
-- Paragraph reformat width is now a configurable parameter in the
- Options GUI.
-
-- New Extension: CodeContext. Provides block structuring hints for code
- which has scrolled above an edit window. Patch 936169 Noam Raphael.
-
-- If nulls somehow got into the strings in recent-files.lst
- EditorWindow.update_recent_files_list() was failing. Python Bug 931336.
-
-- If the normal background is changed via Configure/Highlighting, it will
- update immediately, thanks to the previously mentioned patch by Nigel Rowe.
-
-- Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe
- This also fixed IDLEfork bug [ 693418 ] Normal text background color not
- refreshed and Python bug [897872 ] Unknown color name on HP-UX
-
-- rpc.py:SocketIO - Large modules were generating large pickles when downloaded
- to the execution server. The return of the OK response from the subprocess
- initialization was interfering and causing the sending socket to be not
- ready. Add an IO ready test to fix this. Moved the polling IO ready test
- into pollpacket().
-
-- Fix typo in rpc.py, s/b "pickle.PicklingError" not "pickle.UnpicklingError".
-
-- Added a Tk error dialog to run.py inform the user if the subprocess can't
- connect to the user GUI process. Added a timeout to the GUI's listening
- socket. Added Tk error dialogs to PyShell.py to announce a failure to bind
- the port or connect to the subprocess. Clean up error handling during
- connection initiation phase. This is an update of Python Patch 778323.
-
-- Print correct exception even if source file changed since shell was
- restarted. IDLEfork Patch 869012 Noam Raphael
-
-- Keybindings with the Shift modifier now work correctly. So do bindings which
- use the Space key. Limit unmodified user keybindings to the function keys.
- Python Bug 775353, IDLEfork Bugs 755647, 761557
-
-- After an exception, run.py was not setting the exception vector. Noam
- Raphael suggested correcting this so pdb's postmortem pm() would work.
- IDLEfork Patch 844675
-
-- IDLE now does not fail to save the file anymore if the Tk buffer is not a
- Unicode string, yet eol_convention is. Python Bugs 774680, 788378
-
-- IDLE didn't start correctly when Python was installed in "Program Files" on
- W2K and XP. Python Bugs 780451, 784183
-
-- config-main.def documentation incorrectly referred to idle- instead of
- config- filenames. SF 782759 Also added note about .idlerc location.
-
-
-What's New in IDLE 1.0?
-=======================
-*Release date: 29-Jul-2003*
-
-- Added a banner to the shell discussing warnings possibly raised by personal
- firewall software. Added same comment to README.txt.
-
-- Calltip error when docstring was None Python Bug 775541
-
-- Updated extend.txt, help.txt, and config-extensions.def to correctly
- reflect the current status of the configuration system. Python Bug 768469
-
-- Fixed: Call Tip Trimming May Loop Forever. Python Patch 769142 (Daniels)
-
-- Replaced apply(f, args, kwds) with f(*args, **kwargs) to improve performance
- Python Patch 768187
-
-- Break or continue statements outside a loop were causing IDLE crash
- Python Bug 767794
-
-- Convert Unicode strings from readline to IOBinding.encoding. Also set
- sys.std{in|out|err}.encoding, for both the local and the subprocess case.
- SF IDLEfork patch 682347.
-
-- Extend AboutDialog.ViewFile() to support file encodings. Make the CREDITS
- file Latin-1.
-
-- Updated the About dialog to reflect re-integration into Python. Provide
- buttons to display Python's NEWS, License, and Credits, plus additional
- buttons for IDLE's README and NEWS.
-
-- TextViewer() now has a third parameter which allows inserting text into the
- viewer instead of reading from a file.
-
-- (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of
- IDLEfork modified to install in the Python environment. The code in the
- interrupt module has been moved to thread.interrupt_main(). )
-
-- Printing the Shell window was failing if it was not saved first SF 748975
-
-- When using the Search in Files dialog, if the user had a selection
- highlighted in his Editor window, insert it into the dialog search field.
-
-- The Python Shell entry was disappearing from the Windows menu.
-
-- Update the Windows file list when a file name change occurs
-
-- Change to File / Open Module: always pop up the dialog, using the current
- selection as the default value. This is easier to use habitually.
-
-- Avoided a problem with starting the subprocess when 'localhost' doesn't
- resolve to the user's loopback interface. SF 747772
-
-- Fixed an issue with highlighted errors never de-colorizing. SF 747677. Also
- improved notification of Tabnanny Token Error.
-
-- File / New will by default save in the directory of the Edit window from
- which it was initiated. SF 748973 Guido van Rossum patch.
-
-
-What's New in IDLEfork 0.9b1?
-=============================
-*Release date: 02-Jun-2003*
-
-- The current working directory of the execution environment (and shell
- following completion of execution) is now that of the module being run.
-
-- Added the delete-exitfunc option to config-main.def. (This option is not
- included in the Options dialog.) Setting this to True (the default) will
- cause IDLE to not run sys.exitfunc/atexit when the subprocess exits.
-
-- IDLE now preserves the line ending codes when editing a file produced on
- a different platform. SF 661759, SF 538584
-
-- Reduced default editor font size to 10 point and increased window height
- to provide a better initial impression on Windows.
-
-- Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting
- the default font when first installed on Windows. SF 661676
-
-- Added Autosave feature: when user runs code from edit window, if the file
- has been modified IDLE will silently save it if Autosave is enabled. The
- option is set in the Options dialog, and the default is to prompt the
- user to save the file. SF 661318 Bruce Sherwood patch.
-
-- Improved the RESTART annotation in the shell window when the user restarts
- the shell while it is generating output. Also improved annotation when user
- repeatedly hammers the Ctrl-F6 restart.
-
-- Allow IDLE to run when not installed and cwd is not the IDLE directory
- SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael
-
-- When a module is run from an EditorWindow: if its directory is not in
- sys.path, prepend it. This allows the module to import other modules in
- the same directory. Do the same for a script run from the command line.
-
-- Correctly restart the subprocess if it is running user code and the user
- attempts to run some other module or restarts the shell. Do the same if
- the link is broken and it is possible to restart the subprocess and re-
- connect to the GUI. SF RFE 661321.
-
-- Improved exception reporting when running commands or scripts from the
- command line.
-
-- Added a -n command line switch to start IDLE without the subprocess.
- Removed the Shell menu when running in that mode. Updated help messages.
-
-- Added a comment to the shell startup header to indicate when IDLE is not
- using the subprocess.
-
-- Restore the ability to run without the subprocess. This can be important for
- some platforms or configurations. (Running without the subprocess allows the
- debugger to trace through parts of IDLE itself, which may or may not be
- desirable, depending on your point of view. In addition, the traditional
- reload/import tricks must be use if user source code is changed.) This is
- helpful for developing IDLE using IDLE, because one instance can be used to
- edit the code and a separate instance run to test changes. (Multiple
- concurrent IDLE instances with subprocesses is a future feature)
-
-- Improve the error message a user gets when saving a file with non-ASCII
- characters and no source encoding is specified. Done by adding a dialog
- 'EncodingMessage', which contains the line to add in a fixed-font entry
- widget, and which has a button to add that line to the file automatically.
- Also, add a configuration option 'EditorWindow/encoding', which has three
- possible values: none, utf-8, and locale. None is the default: IDLE will show
- this dialog when non-ASCII characters are encountered. utf-8 means that files
- with non-ASCII characters are saved as utf-8-with-bom. locale means that
- files are saved in the locale's encoding; the dialog is only displayed if the
- source contains characters outside the locale's charset. SF 710733 - Loewis
-
-- Improved I/O response by tweaking the wait parameter in various
- calls to signal.signal().
-
-- Implemented a threaded subprocess which allows interrupting a pass
- loop in user code using the 'interrupt' extension. User code runs
- in MainThread, while the RPCServer is handled by SockThread. This is
- necessary because Windows doesn't support signals.
-
-- Implemented the 'interrupt' extension module, which allows a subthread
- to raise a KeyboardInterrupt in the main thread.
-
-- Attempting to save the shell raised an error related to saving
- breakpoints, which are not implemented in the shell
-
-- Provide a correct message when 'exit' or 'quit' are entered at the
- IDLE command prompt SF 695861
-
-- Eliminate extra blank line in shell output caused by not flushing
- stdout when user code ends with an unterminated print. SF 695861
-
-- Moved responsibility for exception formatting (i.e. pruning IDLE internal
- calls) out of rpc.py into the client and server.
-
-- Exit IDLE cleanly even when doing subprocess I/O
-
-- Handle subprocess interrupt with an RPC message.
-
-- Restart the subprocess if it terminates itself. (VPython programs do that)
-
-- Support subclassing of exceptions, including in the shell, by moving the
- exception formatting to the subprocess.
-
-
-What's New in IDLEfork 0.9 Alpha 2?
-===================================
-*Release date: 27-Jan-2003*
-
-- Updated INSTALL.txt to claify use of the python2 rpm.
-
-- Improved formatting in IDLE Help.
-
-- Run menu: Replace "Run Script" with "Run Module".
-
-- Code encountering an unhandled exception under the debugger now shows
- the correct traceback, with IDLE internal levels pruned out.
-
-- If an exception occurs entirely in IDLE, don't prune the IDLE internal
- modules from the traceback displayed.
-
-- Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
-
-- IDLE icons will now install correctly even when setup.py is run from the
- build directory
-
-- Class Browser now compatible with Python2.3 version of pyclbr.py
-
-- Left cursor move in presence of selected text now moves from left end
- of the selection.
-
-- Add Meta keybindings to "IDLE Classic Windows" to handle reversed
- Alt/Meta on some Linux distros.
-
-- Change default: IDLE now starts with Python Shell.
-
-- Removed the File Path from the Additional Help Sources scrolled list.
-
-- Add capability to access Additional Help Sources on the web if the
- Help File Path begins with //http or www. (Otherwise local path is
- validated, as before.)
-
-- Additional Help Sources were not being posted on the Help menu in the
- order entered. Implement sorting the list by [HelpFiles] 'option'
- number.
-
-- Add Browse button to New Help Source dialog. Arrange to start in
- Python/Doc if platform is Windows, otherwise start in current directory.
-
-- Put the Additional Help Sources directly on the Help menu instead of in
- an Extra Help cascade menu. Rearrange the Help menu so the Additional
- Help Sources come last. Update help.txt appropriately.
-
-- Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
-
-- Uniform capitalization in General tab of ConfigDialog, update the doc string.
-
-- Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly
- deleting Additional Help Sources from the user's config file.
-
-- Make configHelpSourceEdit OK button the default and bind <Return>
-
-- Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached
- to parents.
-
-- Use os.startfile() to open both Additional Help and Python Help on the
- Windows platform. The application associated with the file type will act as
- the viewer. Windows help files (.chm) are now supported via the
- Settings/General/Additional Help facility.
-
-- If Python Help files are installed locally on Linux, use them instead of
- accessing python.org.
-
-- Make the methods for finding the Python help docs more robust, and make
- them work in the installed configuration, also.
-
-- On the Save Before Run dialog, make the OK button the default. One
- less mouse action!
-
-- Add a method: EditorWindow.get_geometry() for future use in implementing
- window location persistence.
-
-- Removed the "Help/Advice" menu entry. Thanks, David! We'll remember!
-
-- Change the "Classic Windows" theme's paste key to be <ctrl-v>.
-
-- Rearrange the Shell menu to put Stack Viewer entries adjacent.
-
-- Add the ability to restart the subprocess interpreter from the shell window;
- add an associated menu entry "Shell/Restart" with binding Control-F6. Update
- IDLE help.
-
-- Upon a restart, annotate the shell window with a "restart boundary". Add a
- shell window menu "Shell/View Restart" with binding F6 to jump to the most
- recent restart boundary.
-
-- Add Shell menu to Python Shell; change "Settings" to "Options".
-
-- Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
-
-- Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration.
-
-- In installer text, fix reference to Visual Python, should be VPython.
- Properly credit David Scherer.
-
-- Modified idle, idle.py, idle.pyw to improve exception handling.
-
-
-What's New in IDLEfork 0.9 Alpha 1?
-===================================
-*Release date: 31-Dec-2002*
-
-- First release of major new functionality. For further details refer to
- Idle-dev and/or the Sourceforge CVS.
-
-- Adapted to the Mac platform.
-
-- Overhauled the IDLE startup options and revised the idle -h help message,
- which provides details of command line usage.
-
-- Multiple bug fixes and usability enhancements.
-
-- Introduced the new RPC implementation, which includes a debugger. The output
- of user code is to the shell, and the shell may be used to inspect the
- environment after the run has finished. (In version 0.8.1 the shell
- environment was separate from the environment of the user code.)
-
-- Introduced the configuration GUI and a new About dialog.
-
-- Removed David Scherer's Remote Procedure Call code and replaced with Guido
- van Rossum's. GvR code has support for the IDLE debugger and uses the shell
- to inspect the environment of code Run from an Edit window. Files removed:
- ExecBinding.py, loader.py, protocol.py, Remote.py, spawn.py
-
---------------------------------------------------------------------
-Refer to HISTORY.txt for additional information on earlier releases.
---------------------------------------------------------------------
+------------------------------------------------------------------------
+Refer to NEWS2x.txt and HISTORY.txt for information on earlier releases.
+------------------------------------------------------------------------
diff --git a/Lib/idlelib/NEWS2x.txt b/Lib/idlelib/NEWS2x.txt
new file mode 100644
--- /dev/null
+++ b/Lib/idlelib/NEWS2x.txt
@@ -0,0 +1,660 @@
+What's New in IDLE 2.7? (Merged into 3.1 before 2.7 release.)
+=======================
+*Release date: XX-XXX-2010*
+
+- idle.py modified and simplified to better support developing experimental
+ versions of IDLE which are not installed in the standard location.
+
+- OutputWindow/PyShell right click menu "Go to file/line" wasn't working with
+ file paths containing spaces. Bug 5559.
+
+- Windows: Version string for the .chm help file changed, file not being
+ accessed Patch 5783 Guilherme Polo
+
+- Allow multiple IDLE GUI/subprocess pairs to exist simultaneously. Thanks to
+ David Scherer for suggesting the use of an ephemeral port for the GUI.
+ Patch 1529142 Weeble.
+
+- Remove port spec from run.py and fix bug where subprocess fails to
+ extract port from command line when warnings are present.
+
+- Tk 8.5 Text widget requires 'wordprocessor' tabstyle attr to handle
+ mixed space/tab properly. Issue 5129, patch by Guilherme Polo.
+
+- Issue #3549: On MacOS the preferences menu was not present
+
+- IDLE would print a "Unhandled server exception!" message when internal
+ debugging is enabled.
+
+- Issue #4455: IDLE failed to display the windows list when two windows have
+ the same title.
+
+- Issue #4383: When IDLE cannot make the connection to its subprocess, it would
+ fail to properly display the error message.
+
+- help() was not paging to the shell. Issue1650.
+
+- CodeContext was not importing.
+
+- Corrected two 3.0 compatibility errors reported by Mark Summerfield:
+ http://mail.python.org/pipermail/python-3000/2007-December/011491.html
+
+- Shell was not colorizing due to bug introduced at r57998, Bug 1586.
+
+- Issue #1585: IDLE uses non-existent xrange() function.
+
+- Windows EOL sequence not converted correctly, encoding error.
+ Caused file save to fail. Bug 1130.
+
+- IDLE converted to Python 3000 syntax.
+
+- Strings became Unicode.
+
+- CallTips module now uses the inspect module to produce the argspec.
+
+- IDLE modules now use absolute import instead of implied relative import.
+
+- atexit call replaces sys.exitfunc. The functionality of delete-exitfunc flag
+ in config-main.cfg remains unchanged: if set, registered exit functions will
+ be cleared before IDLE exits.
+
+
+What's New in IDLE 2.6
+======================
+*Release date: 01-Oct-2008*, merged into 3.0 releases detailed above (3.0rc2)
+
+- Issue #2665: On Windows, an IDLE installation upgraded from an old version
+ would not start if a custom theme was defined.
+
+- Home / Control-A toggles between left margin and end of leading white
+ space. issue1196903, patch by Jeff Shute.
+
+- Improved AutoCompleteWindow logic. issue2062, patch by Tal Einat.
+
+- Autocompletion of filenames now support alternate separators, e.g. the
+ '/' char on Windows. issue2061 Patch by Tal Einat.
+
+- Configured selection highlighting colors were ignored; updating highlighting
+ in the config dialog would cause non-Python files to be colored as if they
+ were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat.
+
+- ScriptBinding event handlers weren't returning 'break'. Patch 2050, Tal Einat
+
+- There was an error on exit if no sys.exitfunc was defined. Issue 1647.
+
+- Could not open files in .idlerc directory if latter was hidden on Windows.
+ Issue 1743, Issue 1862.
+
+- Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat.
+
+- tabpage.py updated: tabbedPages.py now supports multiple dynamic rows
+ of tabs. Patch 1612746 Tal Einat.
+
+- Add confirmation dialog before printing. Patch 1717170 Tal Einat.
+
+- Show paste position if > 80 col. Patch 1659326 Tal Einat.
+
+- Update cursor color without restarting. Patch 1725576 Tal Einat.
+
+- Allow keyboard interrupt only when user code is executing in subprocess.
+ Patch 1225 Tal Einat (reworked from IDLE-Spoon).
+
+- configDialog cleanup. Patch 1730217 Tal Einat.
+
+- textView cleanup. Patch 1718043 Tal Einat.
+
+- Clean up EditorWindow close.
+
+- Patch 1693258: Fix for duplicate "preferences" menu-OS X. Backport of r56204.
+
+- OSX: Avoid crash for those versions of Tcl/Tk which don't have a console
+
+- Bug in idlelib.MultiCall: Options dialog was crashing IDLE if there was an
+ option in config-extensions w/o a value. Patch #1672481, Tal Einat
+
+- Corrected some bugs in AutoComplete. Also, Page Up/Down in ACW implemented;
+ mouse and cursor selection in ACWindow implemented; double Tab inserts
+ current selection and closes ACW (similar to double-click and Return); scroll
+ wheel now works in ACW. Added AutoComplete instructions to IDLE Help.
+
+- AutoCompleteWindow moved below input line, will move above if there
+ isn't enough space. Patch 1621265 Tal Einat
+
+- Calltips now 'handle' tuples in the argument list (display '<tuple>' :)
+ Suggested solution by Christos Georgiou, Bug 791968.
+
+- Add 'raw' support to configHandler. Patch 1650174 Tal Einat.
+
+- Avoid hang when encountering a duplicate in a completion list. Bug 1571112.
+
+- Patch #1362975: Rework CodeContext indentation algorithm to
+ avoid hard-coding pixel widths.
+
+- Bug #813342: Start the IDLE subprocess with -Qnew if the parent
+ is started with that option.
+
+- Honor the "Cancel" action in the save dialog (Debian bug #299092)
+
+- Some syntax errors were being caught by tokenize during the tabnanny
+ check, resulting in obscure error messages. Do the syntax check
+ first. Bug 1562716, 1562719
+
+- IDLE's version number takes a big jump to match the version number of
+ the Python release of which it's a part.
+
+
+What's New in IDLE 1.2?
+=======================
+*Release date: 19-SEP-2006*
+
+- File menu hotkeys: there were three 'p' assignments. Reassign the
+ 'Save Copy As' and 'Print' hotkeys to 'y' and 't'. Change the
+ Shell hotkey from 's' to 'l'.
+
+- IDLE honors new quit() and exit() commands from site.py Quitter() object.
+ Patch 1540892, Jim Jewett
+
+- The 'with' statement is now a Code Context block opener.
+ Patch 1540851, Jim Jewett
+
+- Retrieval of previous shell command was not always preserving indentation
+ (since 1.2a1) Patch 1528468 Tal Einat.
+
+- Changing tokenize (39046) to detect dedent broke tabnanny check (since 1.2a1)
+
+- ToggleTab dialog was setting indent to 8 even if cancelled (since 1.2a1).
+
+- When used w/o subprocess, all exceptions were preceded by an error
+ message claiming they were IDLE internal errors (since 1.2a1).
+
+- Bug #1525817: Don't truncate short lines in IDLE's tool tips.
+
+- Bug #1517990: IDLE keybindings on MacOS X now work correctly
+
+- Bug #1517996: IDLE now longer shows the default Tk menu when a
+ path browser, class browser or debugger is the frontmost window on MacOS X
+
+- EditorWindow.test() was failing. Bug 1417598
+
+- EditorWindow failed when used stand-alone if sys.ps1 not set.
+ Bug 1010370 Dave Florek
+
+- Tooltips failed on new-syle class __init__ args. Bug 1027566 Loren Guthrie
+
+- Avoid occasional failure to detect closing paren properly.
+ Patch 1407280 Tal Einat
+
+- Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168.
+
+- Colorizer now handles #<builtin> correctly, also unicode strings and
+ 'as' keyword in comment directly following import command. Closes 1325071.
+ Patch 1479219 Tal Einat
+
+- Patch #1162825: Support non-ASCII characters in IDLE window titles.
+
+- Source file f.flush() after writing; trying to avoid lossage if user
+ kills GUI.
+
+- Options / Keys / Advanced dialog made functional. Also, allow binding
+ of 'movement' keys.
+
+- 'syntax' patch adds improved calltips and a new class attribute listbox.
+ MultiCall module allows binding multiple actions to an event.
+ Patch 906702 Noam Raphael
+
+- Better indentation after first line of string continuation.
+ IDLEfork Patch 681992, Noam Raphael
+
+- Fixed CodeContext alignment problem, following suggestion from Tal Einat.
+
+- Increased performance in CodeContext extension Patch 936169 Noam Raphael
+
+- Mac line endings were incorrect when pasting code from some browsers
+ when using X11 and the Fink distribution. Python Bug 1263656.
+
+- <Enter> when cursor is on a previous command retrieves that command. Instead
+ of replacing the input line, the previous command is now appended to the
+ input line. Indentation is preserved, and undo is enabled.
+ Patch 1196917 Jeff Shute
+
+- Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with
+ the Untabify command.
+
+- Corrected "tab/space" Error Dialog to show correct menu for Untabify.
+ Patch 1196980 Jeff Shute
+
+- New files are colorized by default, and colorizing is removed when
+ saving as non-Python files. Patch 1196895 Jeff Shute
+ Closes Python Bugs 775012 and 800432, partial fix IDLEfork 763524
+
+- Improve subprocess link error notification.
+
+- run.py: use Queue's blocking feature instead of sleeping in the main
+ loop. Patch # 1190163 Michiel de Hoon
+
+- Add config-main option to make the 'history' feature non-cyclic.
+ Default remains cyclic. Python Patch 914546 Noam Raphael.
+
+- Removed ability to configure tabs indent from Options dialog. This 'feature'
+ has never worked and no one has complained. It is still possible to set a
+ default tabs (v. spaces) indent 'manually' via config-main.def (or to turn on
+ tabs for the current EditorWindow via the Format menu) but IDLE will
+ encourage indentation via spaces.
+
+- Enable setting the indentation width using the Options dialog.
+ Bug # 783877
+
+- Add keybindings for del-word-left and del-word-right.
+
+- Discourage using an indent width other than 8 when using tabs to indent
+ Python code.
+
+- Restore use of EditorWindow.set_indentation_params(), was dead code since
+ Autoindent was merged into EditorWindow. This allows IDLE to conform to the
+ indentation width of a loaded file. (But it still will not switch to tabs
+ even if the file uses tabs.) Any change in indent width is local to that
+ window.
+
+- Add Tabnanny check before Run/F5, not just when Checking module.
+
+- If an extension can't be loaded, print warning and skip it instead of
+ erroring out.
+
+- Improve error handling when .idlerc can't be created (warn and exit).
+
+- The GUI was hanging if the shell window was closed while a raw_input()
+ was pending. Restored the quit() of the readline() mainloop().
+ http://mail.python.org/pipermail/idle-dev/2004-December/002307.html
+
+- The remote procedure call module rpc.py can now access data attributes of
+ remote registered objects. Changes to these attributes are local, however.
+
+
+What's New in IDLE 1.1?
+=======================
+*Release date: 30-NOV-2004*
+
+- On OpenBSD, terminating IDLE with ctrl-c from the command line caused a
+ stuck subprocess MainThread because only the SocketThread was exiting.
+
+- Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set"
+ button) caused IDLE to fail on restart (no new keyset was created in
+ config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535.
+
+- A change to the linecache.py API caused IDLE to exit when an exception was
+ raised while running without the subprocess (-n switch). Python Bug 1063840.
+
+- When paragraph reformat width was made configurable, a bug was
+ introduced that caused reformatting of comment blocks to ignore how
+ far the block was indented, effectively adding the indentation width
+ to the reformat width. This has been repaired, and the reformat
+ width is again a bound on the total width of reformatted lines.
+
+- Improve keyboard focus binding, especially in Windows menu. Improve
+ window raising, especially in the Windows menu and in the debugger.
+ IDLEfork 763524.
+
+- If user passes a non-existent filename on the commandline, just
+ open a new file, don't raise a dialog. IDLEfork 854928.
+
+- EditorWindow.py was not finding the .chm help file on Windows. Typo
+ at Rev 1.54. Python Bug 990954
+
+- checking sys.platform for substring 'win' was breaking IDLE docs on Mac
+ (darwin). Also, Mac Safari browser requires full file:// URIs. SF 900580.
+
+- Redirect the warning stream to the shell during the ScriptBinding check of
+ user code and format the warning similarly to an exception for both that
+ check and for runtime warnings raised in the subprocess.
+
+- CodeContext hint pane visibility state is now persistent across sessions.
+ The pane no longer appears in the shell window. Added capability to limit
+ extensions to shell window or editor windows. Noam Raphael addition
+ to Patch 936169.
+
+- Paragraph reformat width is now a configurable parameter in the
+ Options GUI.
+
+- New Extension: CodeContext. Provides block structuring hints for code
+ which has scrolled above an edit window. Patch 936169 Noam Raphael.
+
+- If nulls somehow got into the strings in recent-files.lst
+ EditorWindow.update_recent_files_list() was failing. Python Bug 931336.
+
+- If the normal background is changed via Configure/Highlighting, it will
+ update immediately, thanks to the previously mentioned patch by Nigel Rowe.
+
+- Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe
+ This also fixed IDLEfork bug [ 693418 ] Normal text background color not
+ refreshed and Python bug [897872 ] Unknown color name on HP-UX
+
+- rpc.py:SocketIO - Large modules were generating large pickles when downloaded
+ to the execution server. The return of the OK response from the subprocess
+ initialization was interfering and causing the sending socket to be not
+ ready. Add an IO ready test to fix this. Moved the polling IO ready test
+ into pollpacket().
+
+- Fix typo in rpc.py, s/b "pickle.PicklingError" not "pickle.UnpicklingError".
+
+- Added a Tk error dialog to run.py inform the user if the subprocess can't
+ connect to the user GUI process. Added a timeout to the GUI's listening
+ socket. Added Tk error dialogs to PyShell.py to announce a failure to bind
+ the port or connect to the subprocess. Clean up error handling during
+ connection initiation phase. This is an update of Python Patch 778323.
+
+- Print correct exception even if source file changed since shell was
+ restarted. IDLEfork Patch 869012 Noam Raphael
+
+- Keybindings with the Shift modifier now work correctly. So do bindings which
+ use the Space key. Limit unmodified user keybindings to the function keys.
+ Python Bug 775353, IDLEfork Bugs 755647, 761557
+
+- After an exception, run.py was not setting the exception vector. Noam
+ Raphael suggested correcting this so pdb's postmortem pm() would work.
+ IDLEfork Patch 844675
+
+- IDLE now does not fail to save the file anymore if the Tk buffer is not a
+ Unicode string, yet eol_convention is. Python Bugs 774680, 788378
+
+- IDLE didn't start correctly when Python was installed in "Program Files" on
+ W2K and XP. Python Bugs 780451, 784183
+
+- config-main.def documentation incorrectly referred to idle- instead of
+ config- filenames. SF 782759 Also added note about .idlerc location.
+
+
+What's New in IDLE 1.0?
+=======================
+*Release date: 29-Jul-2003*
+
+- Added a banner to the shell discussing warnings possibly raised by personal
+ firewall software. Added same comment to README.txt.
+
+- Calltip error when docstring was None Python Bug 775541
+
+- Updated extend.txt, help.txt, and config-extensions.def to correctly
+ reflect the current status of the configuration system. Python Bug 768469
+
+- Fixed: Call Tip Trimming May Loop Forever. Python Patch 769142 (Daniels)
+
+- Replaced apply(f, args, kwds) with f(*args, **kwargs) to improve performance
+ Python Patch 768187
+
+- Break or continue statements outside a loop were causing IDLE crash
+ Python Bug 767794
+
+- Convert Unicode strings from readline to IOBinding.encoding. Also set
+ sys.std{in|out|err}.encoding, for both the local and the subprocess case.
+ SF IDLEfork patch 682347.
+
+- Extend AboutDialog.ViewFile() to support file encodings. Make the CREDITS
+ file Latin-1.
+
+- Updated the About dialog to reflect re-integration into Python. Provide
+ buttons to display Python's NEWS, License, and Credits, plus additional
+ buttons for IDLE's README and NEWS.
+
+- TextViewer() now has a third parameter which allows inserting text into the
+ viewer instead of reading from a file.
+
+- (Created the .../Lib/idlelib directory in the Python CVS, which is a clone of
+ IDLEfork modified to install in the Python environment. The code in the
+ interrupt module has been moved to thread.interrupt_main(). )
+
+- Printing the Shell window was failing if it was not saved first SF 748975
+
+- When using the Search in Files dialog, if the user had a selection
+ highlighted in his Editor window, insert it into the dialog search field.
+
+- The Python Shell entry was disappearing from the Windows menu.
+
+- Update the Windows file list when a file name change occurs
+
+- Change to File / Open Module: always pop up the dialog, using the current
+ selection as the default value. This is easier to use habitually.
+
+- Avoided a problem with starting the subprocess when 'localhost' doesn't
+ resolve to the user's loopback interface. SF 747772
+
+- Fixed an issue with highlighted errors never de-colorizing. SF 747677. Also
+ improved notification of Tabnanny Token Error.
+
+- File / New will by default save in the directory of the Edit window from
+ which it was initiated. SF 748973 Guido van Rossum patch.
+
+
+What's New in IDLEfork 0.9b1?
+=============================
+*Release date: 02-Jun-2003*
+
+- The current working directory of the execution environment (and shell
+ following completion of execution) is now that of the module being run.
+
+- Added the delete-exitfunc option to config-main.def. (This option is not
+ included in the Options dialog.) Setting this to True (the default) will
+ cause IDLE to not run sys.exitfunc/atexit when the subprocess exits.
+
+- IDLE now preserves the line ending codes when editing a file produced on
+ a different platform. SF 661759, SF 538584
+
+- Reduced default editor font size to 10 point and increased window height
+ to provide a better initial impression on Windows.
+
+- Options / Fonts/Tabs / Set Base Editor Font: List box was not highlighting
+ the default font when first installed on Windows. SF 661676
+
+- Added Autosave feature: when user runs code from edit window, if the file
+ has been modified IDLE will silently save it if Autosave is enabled. The
+ option is set in the Options dialog, and the default is to prompt the
+ user to save the file. SF 661318 Bruce Sherwood patch.
+
+- Improved the RESTART annotation in the shell window when the user restarts
+ the shell while it is generating output. Also improved annotation when user
+ repeatedly hammers the Ctrl-F6 restart.
+
+- Allow IDLE to run when not installed and cwd is not the IDLE directory
+ SF Patch 686254 "Run IDLEfork from any directory without set-up" - Raphael
+
+- When a module is run from an EditorWindow: if its directory is not in
+ sys.path, prepend it. This allows the module to import other modules in
+ the same directory. Do the same for a script run from the command line.
+
+- Correctly restart the subprocess if it is running user code and the user
+ attempts to run some other module or restarts the shell. Do the same if
+ the link is broken and it is possible to restart the subprocess and re-
+ connect to the GUI. SF RFE 661321.
+
+- Improved exception reporting when running commands or scripts from the
+ command line.
+
+- Added a -n command line switch to start IDLE without the subprocess.
+ Removed the Shell menu when running in that mode. Updated help messages.
+
+- Added a comment to the shell startup header to indicate when IDLE is not
+ using the subprocess.
+
+- Restore the ability to run without the subprocess. This can be important for
+ some platforms or configurations. (Running without the subprocess allows the
+ debugger to trace through parts of IDLE itself, which may or may not be
+ desirable, depending on your point of view. In addition, the traditional
+ reload/import tricks must be use if user source code is changed.) This is
+ helpful for developing IDLE using IDLE, because one instance can be used to
+ edit the code and a separate instance run to test changes. (Multiple
+ concurrent IDLE instances with subprocesses is a future feature)
+
+- Improve the error message a user gets when saving a file with non-ASCII
+ characters and no source encoding is specified. Done by adding a dialog
+ 'EncodingMessage', which contains the line to add in a fixed-font entry
+ widget, and which has a button to add that line to the file automatically.
+ Also, add a configuration option 'EditorWindow/encoding', which has three
+ possible values: none, utf-8, and locale. None is the default: IDLE will show
+ this dialog when non-ASCII characters are encountered. utf-8 means that files
+ with non-ASCII characters are saved as utf-8-with-bom. locale means that
+ files are saved in the locale's encoding; the dialog is only displayed if the
+ source contains characters outside the locale's charset. SF 710733 - Loewis
+
+- Improved I/O response by tweaking the wait parameter in various
+ calls to signal.signal().
+
+- Implemented a threaded subprocess which allows interrupting a pass
+ loop in user code using the 'interrupt' extension. User code runs
+ in MainThread, while the RPCServer is handled by SockThread. This is
+ necessary because Windows doesn't support signals.
+
+- Implemented the 'interrupt' extension module, which allows a subthread
+ to raise a KeyboardInterrupt in the main thread.
+
+- Attempting to save the shell raised an error related to saving
+ breakpoints, which are not implemented in the shell
+
+- Provide a correct message when 'exit' or 'quit' are entered at the
+ IDLE command prompt SF 695861
+
+- Eliminate extra blank line in shell output caused by not flushing
+ stdout when user code ends with an unterminated print. SF 695861
+
+- Moved responsibility for exception formatting (i.e. pruning IDLE internal
+ calls) out of rpc.py into the client and server.
+
+- Exit IDLE cleanly even when doing subprocess I/O
+
+- Handle subprocess interrupt with an RPC message.
+
+- Restart the subprocess if it terminates itself. (VPython programs do that)
+
+- Support subclassing of exceptions, including in the shell, by moving the
+ exception formatting to the subprocess.
+
+
+What's New in IDLEfork 0.9 Alpha 2?
+===================================
+*Release date: 27-Jan-2003*
+
+- Updated INSTALL.txt to claify use of the python2 rpm.
+
+- Improved formatting in IDLE Help.
+
+- Run menu: Replace "Run Script" with "Run Module".
+
+- Code encountering an unhandled exception under the debugger now shows
+ the correct traceback, with IDLE internal levels pruned out.
+
+- If an exception occurs entirely in IDLE, don't prune the IDLE internal
+ modules from the traceback displayed.
+
+- Class Browser and Path Browser now use Alt-Key-2 for vertical zoom.
+
+- IDLE icons will now install correctly even when setup.py is run from the
+ build directory
+
+- Class Browser now compatible with Python2.3 version of pyclbr.py
+
+- Left cursor move in presence of selected text now moves from left end
+ of the selection.
+
+- Add Meta keybindings to "IDLE Classic Windows" to handle reversed
+ Alt/Meta on some Linux distros.
+
+- Change default: IDLE now starts with Python Shell.
+
+- Removed the File Path from the Additional Help Sources scrolled list.
+
+- Add capability to access Additional Help Sources on the web if the
+ Help File Path begins with //http or www. (Otherwise local path is
+ validated, as before.)
+
+- Additional Help Sources were not being posted on the Help menu in the
+ order entered. Implement sorting the list by [HelpFiles] 'option'
+ number.
+
+- Add Browse button to New Help Source dialog. Arrange to start in
+ Python/Doc if platform is Windows, otherwise start in current directory.
+
+- Put the Additional Help Sources directly on the Help menu instead of in
+ an Extra Help cascade menu. Rearrange the Help menu so the Additional
+ Help Sources come last. Update help.txt appropriately.
+
+- Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
+
+- Uniform capitalization in General tab of ConfigDialog, update the doc string.
+
+- Fix bug in ConfigDialog where SaveAllChangedConfig() was unexpectedly
+ deleting Additional Help Sources from the user's config file.
+
+- Make configHelpSourceEdit OK button the default and bind <Return>
+
+- Fix Tk root pop-ups in configHelpSourceEdit: error dialogs not attached
+ to parents.
+
+- Use os.startfile() to open both Additional Help and Python Help on the
+ Windows platform. The application associated with the file type will act as
+ the viewer. Windows help files (.chm) are now supported via the
+ Settings/General/Additional Help facility.
+
+- If Python Help files are installed locally on Linux, use them instead of
+ accessing python.org.
+
+- Make the methods for finding the Python help docs more robust, and make
+ them work in the installed configuration, also.
+
+- On the Save Before Run dialog, make the OK button the default. One
+ less mouse action!
+
+- Add a method: EditorWindow.get_geometry() for future use in implementing
+ window location persistence.
+
+- Removed the "Help/Advice" menu entry. Thanks, David! We'll remember!
+
+- Change the "Classic Windows" theme's paste key to be <ctrl-v>.
+
+- Rearrange the Shell menu to put Stack Viewer entries adjacent.
+
+- Add the ability to restart the subprocess interpreter from the shell window;
+ add an associated menu entry "Shell/Restart" with binding Control-F6. Update
+ IDLE help.
+
+- Upon a restart, annotate the shell window with a "restart boundary". Add a
+ shell window menu "Shell/View Restart" with binding F6 to jump to the most
+ recent restart boundary.
+
+- Add Shell menu to Python Shell; change "Settings" to "Options".
+
+- Remove incorrect comment in setup.py: IDLEfork is now installed as a package.
+
+- Add INSTALL.txt, HISTORY.txt, NEWS.txt to installed configuration.
+
+- In installer text, fix reference to Visual Python, should be VPython.
+ Properly credit David Scherer.
+
+- Modified idle, idle.py, idle.pyw to improve exception handling.
+
+
+What's New in IDLEfork 0.9 Alpha 1?
+===================================
+*Release date: 31-Dec-2002*
+
+- First release of major new functionality. For further details refer to
+ Idle-dev and/or the Sourceforge CVS.
+
+- Adapted to the Mac platform.
+
+- Overhauled the IDLE startup options and revised the idle -h help message,
+ which provides details of command line usage.
+
+- Multiple bug fixes and usability enhancements.
+
+- Introduced the new RPC implementation, which includes a debugger. The output
+ of user code is to the shell, and the shell may be used to inspect the
+ environment after the run has finished. (In version 0.8.1 the shell
+ environment was separate from the environment of the user code.)
+
+- Introduced the configuration GUI and a new About dialog.
+
+- Removed David Scherer's Remote Procedure Call code and replaced with Guido
+ van Rossum's. GvR code has support for the IDLE debugger and uses the shell
+ to inspect the environment of code Run from an Edit window. Files removed:
+ ExecBinding.py, loader.py, protocol.py, Remote.py, spawn.py
+
+--------------------------------------------------------------------
+Refer to HISTORY.txt for additional information on earlier releases.
+--------------------------------------------------------------------
--
Repository URL: https://hg.python.org/cpython
1
0
cpython (2.7): Issue #28258: Explain the LC_ALL change in a comment
by victor.stinner Sept. 29, 2016
by victor.stinner Sept. 29, 2016
Sept. 29, 2016
https://hg.python.org/cpython/rev/f256bd5b8418
changeset: 104167:f256bd5b8418
branch: 2.7
parent: 104160:f2247d1cb884
user: Victor Stinner <victor.stinner(a)gmail.com>
date: Thu Sep 29 22:33:02 2016 +0200
summary:
Issue #28258: Explain the LC_ALL change in a comment
files:
Makefile.pre.in | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1419,6 +1419,10 @@
Modules/ld_so_aix Modules/python.exp Misc/python.pc
-rm -f python*-gdb.py
-rm -f pybuilddir.txt
+ # Issue #28258: set LC_ALL to avoid issues with Estonian locale.
+ # Expansion is performed here by shell (spawned by make) itself before
+ # arguments are passed to find. So LC_ALL=C must be set as a separate
+ # command.
LC_ALL=C; find $(srcdir)/[a-zA-Z]* '(' -name '*.fdc' -o -name '*~' \
-o -name '[@,#]*' -o -name '*.old' \
-o -name '*.orig' -o -name '*.rej' \
--
Repository URL: https://hg.python.org/cpython
1
0
cpython (3.5): Issue #28258: Explain the LC_ALL change in a comment
by victor.stinner Sept. 29, 2016
by victor.stinner Sept. 29, 2016
Sept. 29, 2016
https://hg.python.org/cpython/rev/17f2b6b2e24c
changeset: 104164:17f2b6b2e24c
branch: 3.5
parent: 104157:6110997dd6e7
user: Victor Stinner <victor.stinner(a)gmail.com>
date: Thu Sep 29 22:31:06 2016 +0200
summary:
Issue #28258: Explain the LC_ALL change in a comment
files:
Makefile.pre.in | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1623,6 +1623,10 @@
Modules/Setup Modules/Setup.local Modules/Setup.config \
Modules/ld_so_aix Modules/python.exp Misc/python.pc
-rm -f python*-gdb.py
+ # Issue #28258: set LC_ALL to avoid issues with Estonian locale.
+ # Expansion is performed here by shell (spawned by make) itself before
+ # arguments are passed to find. So LC_ALL=C must be set as a separate
+ # command.
LC_ALL=C; find $(srcdir)/[a-zA-Z]* '(' -name '*.fdc' -o -name '*~' \
-o -name '[@,#]*' -o -name '*.old' \
-o -name '*.orig' -o -name '*.rej' \
--
Repository URL: https://hg.python.org/cpython
1
0