summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-33065: Fix problem debugging user classes with __repr__ method (GH-24183)Miss Islington (bot)2021-01-103-3/+19
* [3.8] [3.9] bpo-42681: Fix test_curses failures related to color pairs (GH-24...Serhiy Storchaka2021-01-051-7/+26
* [3.8] bpo-32631: IDLE: Enable zzdummy example extension module (GH-14491)Terry Jan Reedy2021-01-055-31/+225
* bpo-42508: Keep IDLE running on macOS (GH-23577) (#23670)Miss Islington (bot)2021-01-052-19/+11
* bpo-40810: Fix CheckTraceCallbackContent for SQLite pre 3.7.15 (GH-20530)Miss Islington (bot)2021-01-041-0/+8
* [3.8] [3.9] bpo-42681: Fix range checks for color and pair numbers in curses ...Serhiy Storchaka2021-01-041-14/+119
* [3.8] [3.9] bpo-42789: Don't skip curses tests on non-tty. (GH-24009) (GH-240...Serhiy Storchaka2021-01-031-39/+63
* bpo-42809: Improve pickle tests for recursive data. (GH-24060)Miss Islington (bot)2021-01-021-87/+253
* [3.8] bpo-26407: Do not mask errors in csv. (GH-20536) (GH-24021)Serhiy Storchaka2021-01-011-1/+19
* [3.8] bpo-39068: Fix race condition in base64 (GH-17627) (GH-24022)Serhiy Storchaka2021-01-011-2/+2
* [3.8] bpo-42759: Fix equality comparison of Variable and Font in Tkinter (GH-...Serhiy Storchaka2021-01-014-12/+35
* bpo-42794: Update test_nntplib to use offical group name for testing (GH-24037)Miss Islington (bot)2021-01-011-3/+7
* Allow / character in username,password fields in _PROXY envvars. (GH-23973) (...Miss Islington (bot)2020-12-292-2/+14
* bpo-42749: Use dynamic version to test for unsupported bignum in Tk (GH-23966)Miss Islington (bot)2020-12-291-1/+1
* bpo-42749: Fix testing bignum if Tkinter is compiled with Tk 8.4 and dynamic ...Miss Islington (bot)2020-12-271-4/+8
* [3.8] Rename Tkinter tests for widget options (GH-23944) (GH-23946)Serhiy Storchaka2020-12-263-210/+212
* [3.8] bpo-42318: Fix support of non-BMP characters in Tkinter on macOS (GH-23...Miss Islington (bot)2020-12-251-6/+40
* bpo-42734: Fix crasher bogus_code_obj.py (GH-23939)Miss Islington (bot)2020-12-251-1/+1
* bpo-42388: Fix subprocess.check_output input=None when text=True (GH-23467)Miss Islington (bot)2020-12-252-1/+27
* Python 3.8.7v3.8.7Łukasz Langa2020-12-211-54/+68
* Fix typo in docstring (GH-23515)Miss Islington (bot)2020-12-211-1/+1
* [3.8] bpo-42630: Improve error reporting in Tkinter for absent default root (...Serhiy Storchaka2020-12-1917-80/+309
* bpo-41891: ensure asyncio.wait_for waits for task completion (GH-22461)Miss Islington (bot)2020-12-182-1/+65
* bpo-41804: Enhance test_epoll.test_control_and_wait() (GH-23795) (GH-23814)Miss Islington (bot)2020-12-171-13/+11
* bpo-38323: Add guard clauses in MultiLoopChildWatcher. (GH-22756)Miss Islington (bot)2020-12-161-14/+18
* bpo-39101: Fixes BaseException hang in IsolatedAsyncioTestCase. (GH-22654)Miss Islington (bot)2020-12-162-2/+29
* bpo-42644: Validate values in logging.disable() (GH-23786)Miss Islington (bot)2020-12-162-0/+17
* Update idlelib/help.html to current Sphinx output (GH-22833)Miss Islington (bot)2020-12-161-33/+37
* bpo-40219: Lowered ttk LabeledScale dummy (GH-21467)Miss Islington (bot)2020-12-151-1/+4
* bpo-33610: Edit idlelib.codecontext (GH-23773)Miss Islington (bot)2020-12-151-5/+8
* bpo-36541: Add lib2to3 grammar PEP-570 pos-only arg parsing (GH-23759)Miss Islington (bot)2020-12-142-6/+77
* bpo-40084: [Enum] dir() includes member attributes (GH-19219) (GH-22853)Miss Islington (bot)2020-12-093-2/+18
* [3.8] [Enum] reformat and add doc strings (GH-23705). (GH-23706)Ethan Furman2020-12-082-52/+127
* bpo-41907: [Enum] fix format() behavior for IntFlag (GH-22497) (GH-23704)Miss Islington (bot)2020-12-082-1/+15
* Merge tag 'v3.8.7rc1' into 3.8Łukasz Langa2020-12-081-541/+717
|\
| * Python 3.8.7rc1v3.8.7rc1Łukasz Langa2020-12-071-541/+717
* | bpo-41889: [Enum] fix multiple-inheritance regression (GH-22487) (GH-23672)Miss Islington (bot)2020-12-072-3/+34
* | bpo-42536: GC track recycled tuples (GH-23623) (GH-23652)Brandt Bucher2020-12-075-1/+104
* | bpo-39825: Fixes sysconfig.get_config_var('EXT_SUFFIX') on Windows to match d...Miss Islington (bot)2020-12-072-2/+5
|/
* bpo-17735: inspect.findsource now raises OSError when co_lineno is out of ran...Miss Islington (bot)2020-12-042-1/+17
* bpo-42116: Fix inspect.getsource handling of trailing comments (GH-23630)Miss Islington (bot)2020-12-043-4/+48
* bpo-41473: Reenable test_gdb on gdb 9.2 and newer (GH-23637)Miss Islington (bot)2020-12-041-5/+0
* bpo-42553: Fix test_asyncio.test_call_later() (GH-23627)Miss Islington (bot)2020-12-031-3/+0
* bpo-42328: Skip some tests with themes vista and xpnative on Windows 7 (GH-23...Miss Islington (bot)2020-12-031-0/+9
* bpo-42482: remove reference to exc_traceback from TracebackException (GH-23531)Miss Islington (bot)2020-12-012-3/+24
* bpo-42508: Remove bogus idlelib.pyshell.ModifiedInterpreter attribute (GH-23570)Miss Islington (bot)2020-11-301-1/+1
* bpo-42142: Try to fix timeouts in ttk tests (GH-23474)Miss Islington (bot)2020-11-302-19/+7
* [3.8] bpo-42474: test TracebackException comparison to non-equal instances (G...Irit Katriel2020-11-301-1/+51
* bpo-42406: Fix whichmodule() with multiprocessing (GH-23403)Miss Islington (bot)2020-11-291-1/+3
* bpo-34215: Clarify IncompleteReadError message when "expected" is None (GH-21...Miss Islington (bot)2020-11-282-4/+7