summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-31836: Test_code_module now passes with sys.ps1, ps2 set (GH-4070) (#4156)Miss Islington (bot)2017-10-281-0/+4
* IDLE -- Restrict shell prompt manipulaton to the shell. (GH-4143) (#4155)Miss Islington (bot)2017-10-281-0/+4
* bpo-31860: Make the font sample in the IDLE font configuration dialog editabl...Miss Islington (bot)2017-10-281-0/+2
* [3.6] bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327). (#4...xdegaye2017-10-261-0/+4
* [3.6] bpo-21720: Restore the Python 2.7 logic in handling a fromlist. (GH-411...Serhiy Storchaka2017-10-261-0/+3
* [3.6] bpo-30817: Fix PyErr_PrintEx() when no memory (GH-2526). (#4107)xdegaye2017-10-241-0/+2
* bpo-31174: Fix test_tools.test_unparse (GH-4102) (#4104)Miss Islington (bot)2017-10-241-0/+3
* bpo-30722: Make redemo work with Python 3.6+ (GH-2311)Miss Islington (bot)2017-10-231-0/+9
* bpo-31752: Fix possible crash in timedelta constructor called with custom int...Miss Islington (bot)2017-10-231-0/+1
* [3.6] bpo-30695: Add set_nomemory(start, stop) to _testcapi (GH-2406) (#4083)Miss Islington (bot)2017-10-231-0/+2
* [3.6] bpo-28326: Fix multiprocessing.Process when stdout and/or stderr is clo...Antoine Pitrou2017-10-221-0/+1
* bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (GH-4058) (#4059)Miss Islington (bot)2017-10-201-0/+2
* bpo-31632: fix set_protocol() in _SSLProtocolTransport (GH-3817) (GH-3817) (#...Miss Islington (bot)2017-10-192-0/+3
* bpo-31457: Don't omit inner ``process()`` calls with nested LogAdapters (GH-4...Miss Islington (bot)2017-10-191-0/+2
* [3.6] bpo-31457: Make the `LoggerAdapter.manager` property settable (GH-4042)...Miss Islington (bot)2017-10-191-0/+1
* [3.6] bpo-31334: Fix timeout in select.poll.poll() (GH-3277) (#4033)Miss Islington (bot)2017-10-182-0/+4
* [3.6] bpo-31806: Use _PyTime_ROUND_TIMEOUT for the timeout argument parsing i...Miss Islington (bot)2017-10-181-0/+4
* [3.6] bpo-31786: Make functions in the select module blocking when timeout is...Pablo Galindo2017-10-181-0/+3
* [3.6] bpo-13802: Use non-Latin characters in IDLE's Font settings sample. (GH...Miss Islington (bot)2017-10-171-0/+15
* [3.6] bpo-28603: Fix formatting tracebacks for unhashable exceptions (GH-4014...Miss Islington (bot)2017-10-174-0/+9
* bpo-31672: Fix string.Template accidentally matched non-ASCII identifiers (GH...INADA Naoki2017-10-141-0/+2
* [3.6] bpo-30058: Fixed buffer overflow in select.kqueue.control(). (GH-1095) ...Miss Islington (bot)2017-10-121-0/+1
* bpo-31537: Update readline documentation example. (GH-3925) (GH-3948)Miss Islington (bot)2017-10-101-0/+2
* [3.6] bpo-31728: Prevent crashes in _elementtree due to unsafe cleanup of Ele...Miss Islington (bot)2017-10-101-0/+2
* [3.6] bpo-31642: Restore blocking "from" import by setting None in sys.module...Serhiy Storchaka2017-10-081-0/+2
* [3.6] bpo-31675: Fix memory leaks in Tkinter's methods splitlist() and split(...Miss Islington (bot)2017-10-031-0/+2
* [3.6] bpo-31673: Fixed typo in the name of Tkinter's method adderrorinfo(). (...Serhiy Storchaka2017-10-031-0/+1
* [3.6] bpo-31619: Fixed a ValueError when convert a string with large number o...Miss Islington (bot)2017-10-031-0/+2
* Merge v3.6.3 into 3.6 branchNed Deily2017-10-031-0/+27
|\
| * Update NEWS blurbs for 3.6.3 finalNed Deily2017-10-034-5/+27
| * Improve/fix some Misc/NEWS entriesNed Deily2017-10-033-3/+3
| * Add NEWS entries for 3.6.3 final cherrypicks.Ned Deily2017-10-034-0/+5
* | [3.6] bpo-31516: current_thread() should not return a dummy thread at shutdow...Miss Islington (bot)2017-10-021-0/+1
* | [3.6] bpo-31460: Simplify the API of IDLE's Module Browser. (GH-3842) (#3843)Terry Jan Reedy2017-10-011-0/+6
* | [3.6] bpo-31649: Make IDLE's _htest, _utest parameters keyword-only. (GH-3839...Terry Jan Reedy2017-09-301-0/+1
* | [3.6] bpo-31592: Fix an assertion failure in Python parser in case of a bad u...Miss Islington (bot)2017-09-301-0/+2
* | [3.6] bpo-25351: avoid activate failure on strict shells (GH-3804) (#3820)Miss Islington (bot)2017-09-291-0/+1
* | [3.6] bpo-31536: Avoid wholesale rebuild after `make regen-all` (GH-3678) (#3...Miss Islington (bot)2017-09-281-0/+1
* | [3.6] bpo-31478: Fix an assertion failure in random.seed() in case a seed has...Serhiy Storchaka2017-09-281-0/+2
* | [3.6] closes bpo-22140: Prevent double substitution of prefix in python-confi...Benjamin Peterson2017-09-282-12/+14
* | [3.6] bpo-31588: Validate return value of __prepare__() methods (GH-3790)Miss Islington (bot)2017-09-271-0/+2
* | [3.6] bpo-25532: Protect against infinite loops in inspect.unwrap() (GH-1717)...Serhiy Storchaka2017-09-271-0/+3
* | [3.6] bpo-31505: Fix an assertion failure in json, in case _json.make_encoder...Miss Islington (bot)2017-09-271-0/+2
* | [3.6] bpo-31285: Fix an assertion failure and a SystemError in warnings.warn_...Serhiy Storchaka2017-09-271-0/+3
* | [3.6] bpo-31490: Fix an assertion failure in ctypes in case an _anonymous_ at...Miss Islington (bot)2017-09-271-0/+3
* | [3.6] bpo-31492: Fix assertion failures in case of a module with a bad __name...Serhiy Storchaka2017-09-271-0/+3
* | [3.6] bpo-30347: Stop crashes when concurrently iterate over itertools.groupb...Miss Islington (bot)2017-09-261-0/+1
* | [3.6] bpo-31311: Fix a SystemError and a crash in ctypes._CData.__setstate__(...Miss Islington (bot)2017-09-251-0/+2
* | [3.6] bpo-30085: Improve documentation for operator (GH-1171) (#3736)Miss Islington (bot)2017-09-241-0/+2
* | [3.6] bpo-31566: Fix an assertion failure in _warnings.warn() in case of a ba...Miss Islington (bot)2017-09-241-0/+2