This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: readline module - set/get quote delimiters
Type: enhancement Stage: patch review
Components: Extension Modules Versions: Python 3.10, Python 3.9
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: cdelfosse, christian.heimes, loewis, loic
Priority: low Keywords: patch

Created on 2008-01-06 15:14 by loic, last changed 2022-04-11 14:56 by admin.

Files
File name Uploaded Description Edit
p2.5.1-readline.diff loic, 2008-01-06 15:14 Modules/readline.c patch
trunk-readline.diff cdelfosse, 2010-06-18 21:51 patch against trunk review
Messages (5)
msg59380 - (view) Author: Loïc Jeannin (loic) Date: 2008-01-06 15:14
here is a patch against Modules/readline.c to add getter/setter for
rl_completer_quote_characters. This is needed for advanced use of
cmd.Cmd with completion.
msg59403 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2008-01-06 18:45
As a new feature, it can't go into 2.5. Targetting for 2.6.
msg59404 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2008-01-06 18:55
Please provide a patch against the trunk. Don't forget to update the
documentation and to add an unit test.
msg108145 - (view) Author: Cédric Delfosse (cdelfosse) Date: 2010-06-18 21:51
Here is an updated patch against current trunk. It also contains documentation update and a unit test.
msg116858 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2010-09-19 10:49
Can a committer review this please.  Can't test it myself as I don't have a *NIX box, sorry.
History
Date User Action Args
2022-04-11 14:56:29adminsetgithub: 46085
2020-11-18 23:19:55iritkatrielsetversions: + Python 3.9, Python 3.10, - Python 3.2
2014-02-03 19:42:22BreamoreBoysetnosy: - BreamoreBoy
2010-09-19 10:49:45BreamoreBoysetnosy: + BreamoreBoy

messages: + msg116858
stage: patch review
2010-08-07 21:31:17terry.reedysetversions: + Python 3.2, - Python 2.6
2010-06-18 21:51:41cdelfossesetfiles: + trunk-readline.diff
nosy: + cdelfosse
messages: + msg108145

2008-01-06 18:55:17christian.heimessetpriority: low
nosy: + christian.heimes
messages: + msg59404
keywords: + patch
2008-01-06 18:45:56loewissetnosy: + loewis
messages: + msg59403
versions: + Python 2.6, - Python 2.5, Python 2.4
2008-01-06 15:14:05loiccreate