File tree Expand file tree Collapse file tree 4 files changed +16
-7
lines changed Expand file tree Collapse file tree 4 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 1
1
SET VERSION = 1.7
2
2
python setup.py build_sphinx
3
- python setup.py build_sphinx -b latex
3
+ rem python setup.py build_sphinx -b latex
4
4
5
- pushd build\sphinx\latex
6
- pdflatex pyreadline.tex
7
- pdflatex pyreadline.tex
8
- pdflatex pyreadline.tex
9
- popd
5
+ rem pushd build\sphinx\latex
6
+ rem pdflatex pyreadline.tex
7
+ rem pdflatex pyreadline.tex
8
+ rem pdflatex pyreadline.tex
9
+ rem popd
10
10
11
11
mkdir dist
12
12
copy build\sphinx\latex\pyreadline.pdf dist\pyreadline-%VERSION% .pdf
Original file line number Diff line number Diff line change @@ -13,6 +13,10 @@ console is still under development.
13
13
14
14
The pyreadline module does not yet support Python 3.x this will be targeted for the 2.0 version.
15
15
16
+ Version 1.7 will be the last release with compatibility with 2.4 and 2.5. The next
17
+ major release will target 2.6, 2.7 and 3.x. The 1.7 series will only receive bugfixes
18
+ from now on.
19
+
16
20
17
21
Dependencies
18
22
------------
Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ Known issues
6
6
from the install directory. This will not interfere with ipython usage, but you will
7
7
not be able to use the rlcompleter module which requires the readline.py module.
8
8
9
- * reverse search does not work
9
+ * Forward incremental search using ctrl-s is flaky because no keyrelease events are generated for ctrl-s
10
+ we use keypress events instead. As a work around ctrl-shift-r is also bound to forward incremental search.
10
11
11
12
* #488177 exceptions occur when using pyreadline on windows 2008 r2
12
13
Original file line number Diff line number Diff line change 34
34
it is based on the ctypes based UNC readline package by Gary Bishop.
35
35
It is not complete. It has been tested for use with windows 2000 and windows xp.
36
36
37
+ Version 1.7 will be the last release with compatibility with 2.4 and 2.5. The next
38
+ major release will target 2.6, 2.7 and 3.x. The 1.7 series will only receive bugfixes
39
+ from now on.
40
+
37
41
Features:
38
42
* keyboard text selection and copy/paste
39
43
* Shift-arrowkeys for text selection
You can’t perform that action at this time.
0 commit comments