Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | gh-96905: In IDLE code, stop redefining built-ins 'dict' and 'object' (#114227) | Terry Jan Reedy | 2024-01-18 | 1 | -0/+1 |
| | | | | | Prefix 'dict' with 'o', 'g', or 'l' for 'object', 'global', or 'local'. Suffix 'object' with '_'. | ||||
* | gh-81682: Fix test failures when CPython is built without docstrings (GH-113410) | Serhiy Storchaka | 2023-12-23 | 1 | -0/+6 |
| | |||||
* | gh-91098: Use Argument Clinic for Object/classobject.c to fix docstrings ↵ | Oleg Iarygin | 2022-04-19 | 1 | -1/+3 |
| | | | | | | | (#31711) Closes GH-91098. Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> | ||||
* | bpo-46588: fix typo in test_calltip.py (GH-31119) | Caio Agiani | 2022-02-04 | 1 | -1/+1 |
| | |||||
* | bpo-43013: Update idlelib code to 3.x (GH-24315) | Terry Jan Reedy | 2021-01-24 | 1 | -2/+2 |
| | | | | Remove 9 remaining '(object)' occurrences in class headers in idlelib and 25 '()' occurrences in idlelib.idle_test class headers. | ||||
* | bpo-42416: Use inspect.getdoc for IDLE calltips (GH-23416) | Terry Jan Reedy | 2020-11-20 | 1 | -2/+7 |
| | | | Inspect.getdoc(ob) sometimes gets docstrings when ob.__doc__ is None. | ||||
* | bpo-40511: Stop unwanted flashing of IDLE calltips (GH-20910) | Tal Einat | 2020-11-02 | 1 | -1/+98 |
| | | | | | | They were occurring with both repeated 'force-calltip' invocations and by typing parentheses in expressions, strings, and comments in the argument code. Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> | ||||
* | bpo-40181: Remove '/' reminder in IDLE calltips. (GH-22350) | Terry Jan Reedy | 2020-09-22 | 1 | -5/+3 |
| | | | | The marker was added to the language in 3.8 and 3.7 only gets security patches. | ||||
* | bpo-38689: avoid IDLE hanging when calltip fails getting a signature (GH-17152) | Tal Einat | 2020-04-04 | 1 | -7/+17 |
| | | | Inspect.signature failed on the test case because its isinstance call raised. | ||||
* | bpo-35763: Make IDLE calltip note about '/' less obtrusive (GH-13791) | Terry Jan Reedy | 2019-06-05 | 1 | -57/+63 |
| | | | Add it to the end of the first line if there is room. Tests were reworked. | ||||
* | bpo-35641: IDLE - format calltip properly when no docstring (GH-11415) | Emmanuel Arias | 2019-01-03 | 1 | -0/+29 |
| | |||||
* | bpo-33907: Rename an IDLE module and class. (GH-7807) | Terry Jan Reedy | 2018-06-20 | 1 | -0/+218 |
Improve consistency and appearance. Module idlelib.calltips is now calltip. Class idlelib.calltip_w.CallTip is now Calltip. |