summaryrefslogtreecommitdiff
path: root/src/testdir/test_python2.vim
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.1151: insufficient test coverage for Pythonv8.2.1151Bram Moolenaar2020-07-071-0/+25
| | | | | Problem: Insufficient test coverage for Python. Solution: Add more test cases. (Yegappan Lakshmanan, closes #6415)
* patch 8.2.1150: ml_get error when using Pythonv8.2.1150Bram Moolenaar2020-07-071-6/+6
| | | | | | Problem: ml_get error when using Python. (Yegappan Lakshmanan) Solution: Check the line number is not out of range. Call "Check" with "fromObj" instead of "from".
* patch 8.2.1146: not enough testing for Pythonv8.2.1146Bram Moolenaar2020-07-061-83/+288
| | | | | | Problem: Not enough testing for Python. Solution: Add more tests. Fix uncovered problems. (Yegappan Lakshmanan, closes #6392)
* patch 8.2.1123: Python 3 test is old stylev8.2.1123Bram Moolenaar2020-07-031-45/+45
| | | | | Problem: Python 3 test is old style. Solution: Turn into new style test. (Yegappan Lakshmanan, closes #6385)
* patch 8.2.1120: Python code not tested properlyv8.2.1120Bram Moolenaar2020-07-031-8/+3364
| | | | | | Problem: Python code not tested properly. Solution: Add more tests and convert old-style test into new-style test. (Yegappan Lakshmanan, closes #6370)
* patch 8.2.0672: heredoc in scripts does not accept lower case markerv8.2.0672Bram Moolenaar2020-05-011-1/+4
| | | | | | Problem: Heredoc in scripts does not accept lower case marker. Solution: Allow lower case only in non-Vim scripts. (Ken Takata, closes #6019)
* patch 8.2.0578: heredoc for interfaces does not support "trim"v8.2.0578Bram Moolenaar2020-04-141-0/+19
| | | | | | Problem: Heredoc for interfaces does not support "trim". Solution: Update the script heredoc support to be same as the :let command. (Yegappan Lakshmanan, closes #5916)
* patch 8.1.2421: test88 is old stylev8.1.2421Bram Moolenaar2019-12-111-1/+1
| | | | | Problem: Test88 is old style. Solution: Turn into a new style test. (Yegappan Lakshmanan, closes #5347)
* patch 8.1.1984: more functions can be used as methodsv8.1.1984Bram Moolenaar2019-09-041-1/+1
| | | | | Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
* patch 8.1.1544: some balloon tests don't run when they canv8.1.1544Bram Moolenaar2019-06-151-3/+2
| | | | | | | Problem: Some balloon tests don't run when they can. Solution: Split GUI balloon tests off into a separate file. (Ozaki Kiichi, closes #4538) Change the feature check into a command for consistency.
* patch 8.1.1524: tests are silently skippedv8.1.1524Bram Moolenaar2019-06-131-1/+1
| | | | | Problem: Tests are silently skipped. Solution: Throw an exception for skipped tests in more places.
* patch 8.1.1346: error for Python exception does not show useful infov8.1.1346Bram Moolenaar2019-05-181-0/+8
| | | | | | Problem: Error for Python exception does not show useful info. Solution: Show the last line instead of the first one. (Ben Jackson, closes #4381)
* patch 8.1.1074: Python test doesn't wipe out hidden bufferv8.1.1074Bram Moolenaar2019-03-301-4/+9
| | | | | Problem: Python test doesn't wipe out hidden buffer. Solution: Wipe out the buffer. (Ben Jackson, closes #4189)
* patch 8.1.1045: E315 ml_get error when using Python and hidden bufferv8.1.1045Bram Moolenaar2019-03-231-0/+84
| | | | | | Problem: E315 ml_get error when using Python and hidden buffer. Solution: Make sure the cursor position is valid. (Ben Jackson, closes #4153, closes #4154)
* patch 8.1.0950: using :python sets 'pyxversion' even when not executedv8.1.0950Bram Moolenaar2019-02-181-0/+8
| | | | | Problem: Using :python sets 'pyxversion' even when not executed. Solution: Check the "skip" flag. (Shane Harper, closes #3995)
* patch 8.1.0627: Python cannot handle function name of script-local functionv8.1.0627Bram Moolenaar2018-12-221-0/+27
| | | | | | Problem: Python cannot handle function name of script-local function. Solution: Use <SNR> instead of the special byte code. (Ozaki Kiichi, closes #3681)
* patch 8.1.0212: preferred cursor column not set in interfacesv8.1.0212Bram Moolenaar2018-07-251-0/+14
| | | | | | Problem: Preferred cursor column not set in interfaces. Solution: Set w_set_curswant when setting the cursor. (David Hotham, closes #3060)
* patch 8.0.0265: may get ml_get error when :pydo deletes linesv8.0.0265Bram Moolenaar2017-01-291-0/+24
Problem: May get ml_get error when :pydo deletes lines or switches to another buffer. (Nikolai Pavlov, issue #1421) Solution: Check the buffer and line every time.