aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* invalid escape sequences fixed on upstream github.com/pypy/pyrepl#21Matti Picus2019-12-182-3/+3
* Avoid invalid escapes in strings: they cause SyntaxWarnings in py3.6 (#3097)Ronan Lamy2019-10-173-5/+5
* Implement PyOS_InputHook in cpyext. Call it from pyrepl, once before everyArmin Rigo2018-10-251-0/+7
* Remove bogus (but unused) timeout argumentArmin Rigo2018-10-251-2/+2
* import earlierMatti Picus2017-09-241-2/+1
* Issue #2311: grab the __future__ flags imported in the main script, inArmin Rigo2016-05-291-1/+3
* The logic to ask the user for more lines was confused by theArmin Rigo2015-04-141-2/+12
* issue #1986: auto-indent support in "backspace" and "enter"Armin Rigo2015-02-271-9/+59
* issue #1978 resolvedArmin Rigo2015-02-111-2/+11
* Issue #1848: patch by paulie4Armin Rigo2014-08-191-1/+1
* Catch MemoryErrors raised by the machinery of interactive command-line (like ...Armin Rigo2013-11-241-0/+3
* Issue1491. Test and fix: when CSI escape sequences are given in theArmin Rigo2013-11-111-3/+13
* If we are running on top of pypy, we import only _minimal_curses.Armin Rigo2013-06-281-3/+7
* be consistent w/ the console's filename: '<stdin>', to match cpythonPhilip Jenvey2013-04-142-5/+5
* try to use minimal cursesMaciej Fijalkowski2013-04-031-3/+7
* Kill _minimal_curses mentionsMaciej Fijalkowski2013-04-031-5/+2
* backport some obvious fixes/cleanups from pyrepl including a fix for issue1098Brian Kearns2013-02-115-33/+8
* apply some fixes to get the pyrepl tests runningBrian Kearns2013-02-112-4/+11
* move the pyrepl tests to test_lib_pypy so they have a hope of being executedBrian Kearns2013-02-116-341/+0
* a pyrepl + threads fix from amaury (fixes issue 1349)Brian Kearns2013-02-071-0/+1
* Merge change bf651562fa0c from pyrepl:Armin Rigo2012-10-272-2/+2
* Issue1221: When calling reader.readline(), don't pass reader in the arguments!Amaury Forgeot d'Arc2012-07-211-1/+1
* Change the default mapping of the keys Home and EndArmin Rigo2012-04-201-2/+2
* (hpaulj) Fix startup_hook in readline to work like CPython. Fixes issue950David Ripton2012-01-282-13/+13
* Argh. See comment.Armin Rigo2011-11-171-1/+6
* unpack tuple params, for py3k supportPhilip Jenvey2011-11-073-8/+8
* Don't crash on reading or writing stuff to the history fileArmin Rigo2011-11-011-2/+9
* Fix: the case marked as "#PyPy" was never actually followed any more.Armin Rigo2011-10-201-2/+14
* sync from pyrepl 11ef70675cfcRonny Pfannschmidt2011-09-261-1/+2
* Import into _pypy_interact.py the change from code.py to decodeArmin Rigo2011-09-063-4/+7
* Fix: call str() only once per prompt, not twice, even though theArmin Rigo2011-09-011-6/+11
* Fix the most common case by trying to use sys.getfilesystemencoding()Armin Rigo2011-08-191-1/+1
* signal.signal() crashes with ValueError when called from aArmin Rigo2011-07-241-3/+7
* update the inlined pyrepl to revision 4d9968d3e7daAntonio Cuni2011-03-312-1/+36
* make sure not to run _setup twice, else we might get infinite recursion betwe...Antonio Cuni2011-03-301-0/+4
* raise a specific exception in this case, which makes it easier to catch the c...Antonio Cuni2011-03-301-2/+5
* inline pyreplRonny Pfannschmidt2011-03-2129-0/+5042