| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-116322: Rename PyModule_ExperimentalSetGIL to PyUnstable_Module_SetGIL (GH... | Petr Viktorin | 2024-05-06 | 1 | -1/+1 |
|
|
* | gh-116322: Add Py_mod_gil module slot (#116882) | Brett Simmers | 2024-05-03 | 1 | -0/+3 |
|
|
* | gh-117845: Detect libedit hook function signature in configure (#117870) | Joshua Root | 2024-04-17 | 1 | -2/+2 |
|
|
* | gh-105323: Remove `WITH_APPLE_EDITLINE` to use the same declaration for all e... | Tian Gao | 2023-12-05 | 1 | -6/+2 |
|
|
* | gh-112510: Add `readline.backend` for the backend readline uses (GH-112511) | Tian Gao | 2023-12-01 | 1 | -1/+8 |
|
|
* | gh-112105: Make completer delims work on libedit (gh-112106) | Tian Gao | 2023-11-28 | 1 | -0/+16 |
|
|
* | gh-112292 : Catch import error conditions with readline hooks (gh-112313) | Anthony Shaw | 2023-11-28 | 1 | -22/+69 |
|
|
* | gh-109191: Fix build with newer editline (gh-110239) | Bo Anderson | 2023-10-09 | 1 | -1/+1 |
|
|
* | gh-105323: Update readline module to detect apple editline variant (gh-108665) | Donghee Na | 2023-09-29 | 1 | -0/+4 |
|
|
* | gh-108765: Python.h no longer includes <sys/time.h> (#108775) | Victor Stinner | 2023-09-02 | 1 | -8/+8 |
|
|
* | gh-108444: Replace _PyLong_AsInt() with PyLong_AsInt() (#108459) | Victor Stinner | 2023-08-24 | 1 | -1/+1 |
|
|
* | gh-106320: Remove _PyOS_ReadlineTState API (#107034) | Victor Stinner | 2023-07-22 | 1 | -0/+3 |
|
|
* | gh-106320: Remove private pylifecycle.h functions (#106400) | Victor Stinner | 2023-07-04 | 1 | -0/+5 |
|
|
* | gh-105240: add missing function prototypes (#105241) | Irit Katriel | 2023-06-02 | 1 | -2/+2 |
|
|
* | gh-89886: Rely on HAVE_SYS_TIME_H (#105058) | Erlend E. Aasland | 2023-06-01 | 1 | -0/+3 |
|
|
* | gh-99300: Use Py_NewRef() in Modules/ directory (#99469) | Victor Stinner | 2022-11-14 | 1 | -8/+4 |
|
|
* | Fix readline.c compiler warning. (GH-98738) | Benjamin Peterson | 2022-10-26 | 1 | -1/+1 |
|
|
* | bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914) | Victor Stinner | 2021-10-13 | 1 | -2/+4 |
|
|
* | bpo-42819, readline: Disable bracketed paste (GH-24108) | Dustin Rodrigues | 2021-02-15 | 1 | -0/+23 |
|
|
* | bpo-43172: readline now passes its tests when built against libedit (GH-24499) | Gregory P. Smith | 2021-02-12 | 1 | -8/+30 |
|
|
* | bpo-13501: allow choosing between readline and libedit (GH-24189) | Roland Hieber | 2021-02-09 | 1 | -3/+7 |
|
|
* | Fix minor typo in comments in readline.c (GH-23911) | Jero Bado | 2020-12-29 | 1 | -1/+1 |
|
|
* | bpo-20181: Convert the readline module to the Argument Clinic (#14326) | Zackery Spytz | 2020-07-12 | 1 | -247/+336 |
|
|
* | bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (... | Serhiy Storchaka | 2020-04-12 | 1 | -2/+2 |
|
|
* | bpo-39968: Fix a typo error in get_readline_state() (GH-19028) | Hai Shi | 2020-03-16 | 1 | -1/+1 |
|
|
* | bpo-39968: Convert extension modules' macros of get_module_state() to inline ... | Hai Shi | 2020-03-16 | 1 | -4/+9 |
|
|
* | bpo-38634: Allow non-apple build to cope with libedit (GH-16986) | serge-sans-paille | 2019-12-04 | 1 | -19/+4 |
|
|
* | bpo-38631: Avoid Py_FatalError() in readline (GH-16998) | Victor Stinner | 2019-10-30 | 1 | -6/+11 |
|
|
* | bpo-37194: Add a new public PyObject_CallNoArgs() function (GH-13890) | Victor Stinner | 2019-06-17 | 1 | -1/+1 |
|
|
* | bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033) | Zackery Spytz | 2018-12-08 | 1 | -2/+1 |
|
|
* | Fix compiler warning in call_readline() (GH-10820) | Victor Stinner | 2018-11-30 | 1 | -3/+3 |
|
|
* | bpo-13631: Fix the order of initialization for readline libedit on macOS. (GH... | Zvezdan Petkovic | 2018-05-17 | 1 | -1/+3 |
|
|
* | bpo-29240: Fix locale encodings in UTF-8 Mode (#5170) | Victor Stinner | 2018-01-15 | 1 | -2/+2 |
|
|
* | bpo-29240: Ignore UTF-8 Mode in time module (#5148) | Victor Stinner | 2018-01-11 | 1 | -2/+1 |
|
|
* | bpo-29240: readline now ignores the UTF-8 Mode (#5145) | Victor Stinner | 2018-01-10 | 1 | -2/+3 |
|
|
* | Fix CID-1414686: PyInit_readline() handles errors (#4647) | Victor Stinner | 2017-11-30 | 1 | -4/+18 |
|
|
* | bpo-28180: Fix the implementation of PEP 538 on Android (GH-4334) | xdegaye | 2017-11-12 | 1 | -1/+1 |
|
|
* | bpo-31370: Remove support for threads-less builds (#3385) | Antoine Pitrou | 2017-09-07 | 1 | -24/+0 |
|
|
* | bpo-30946: Remove obsolete fallback code in readline module (#2738) | Antoine Pitrou | 2017-07-18 | 1 | -46/+1 |
|
|
* | bpo-29854: test_readline logs versions (#2619) | Victor Stinner | 2017-07-07 | 1 | -0/+1 |
|
|
* | bpo-29854: Fix segfault in call_readline() (GH-728) | Nir Soffer | 2017-07-07 | 1 | -4/+6 |
|
|
* | bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) | Serhiy Storchaka | 2017-04-16 | 1 | -4/+4 |
|
|
* | Replace PyObject_CallFunction() with fastcall | Victor Stinner | 2016-12-01 | 1 | -1/+1 |
|
|
* | merge 3.5 | Benjamin Peterson | 2016-09-06 | 1 | -1/+1 |
|\ |
|
| * | explicitly cast away constness to silence compiler warning | Benjamin Peterson | 2016-09-06 | 1 | -1/+1 |
|
|
* | | Issue #19884: Merge Readline updates from 3.5 | Martin Panter | 2016-08-27 | 1 | -12/+15 |
|\ \
| |/ |
|
| * | Issue #19884: Avoid spurious output on OS X with Gnu Readline | Martin Panter | 2016-08-27 | 1 | -12/+15 |
|
|
* | | Issue #16182: Merge readline locale fix from 3.5 | Martin Panter | 2016-06-14 | 1 | -38/+94 |
|\ \
| |/ |
|
| * | Issue #16182: Fix readline begidx, endidx, and use locale encoding | Martin Panter | 2016-06-14 | 1 | -38/+94 |
|
|
* | | Issue #27171: Merge typo fixes from 3.5 | Martin Panter | 2016-06-02 | 1 | -1/+1 |
|\ \
| |/ |
|