summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_python2.vim
AgeCommit message (Collapse)Author
2024-01-29patch 9.1.0062: Internal error when :luado/perldo/pydo etc delete linesv9.1.0062zeertzjq
Problem: Internal error when :luado/perldo/pydo etc delete lines Solution: Test that the line is still valid line number (zeertzjq) closes: #13931 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2022-09-17patch 9.0.0491: no good reason to build without the float featurev9.0.0491Bram Moolenaar
Problem: No good reason to build without the float feature. Solution: Remove configure check for float and "#ifdef FEAT_FLOAT".
2022-09-02patch 9.0.0363: common names in test files causes tests to be flakyv9.0.0363Bram Moolenaar
Problem: Common names in test files causes tests to be flaky. Solution: Use more specific names.
2021-11-21patch 8.2.3637: typos in test filesv8.2.3637Dominique Pelle
Problem: Typos in test files. Solution: Correct the typos. (Dominique Pellé, closes #9175)
2021-05-24patch 8.2.2881: various pieces of code not covered by testsv8.2.2881Yegappan Lakshmanan
Problem: Various pieces of code not covered by tests. Solution: Add a few more tests. (Yegappan Lakshmanan, closes #8245)
2021-05-19patch 8.2.2872: Python tests fail without the channel featurev8.2.2872Dominique Pelle
Problem: Python tests fail without the channel feature. Solution: Add a feature check. (Dominique Pellé, closes #8226)
2020-12-21patch 8.2.2178: Python 3: non-utf8 character cannot be handledv8.2.2178Bram Moolenaar
Problem: Python 3: non-utf8 character cannot be handled. Solution: Change the string decode. (Björn Linse, closes #1053)
2020-12-18patch 8.2.2160: various typosv8.2.2160Bram Moolenaar
Problem: Various typos. Solution: Fix spelling mistakes. (closes #7494)
2020-11-04patch 8.2.1951: test for list and dict failsv8.2.1951Bram Moolenaar
Problem: Test for list and dict fails. Solution: Adjust for using an empty list/dict for a null one.
2020-08-31patch 8.2.1555: not all tests are executed on Github Actionsv8.2.1555Bram Moolenaar
Problem: Not all tests are executed on Github Actions. Solution: Copy "src" to "src2" earlier. Recognize "src2" in a couple more places. Add two tests to the list of flaky tests. (Ken Takata, closes #6798)
2020-07-11patch 8.2.1183: assert_fails() checks the last error messagev8.2.1183Bram Moolenaar
Problem: assert_fails() checks the last error message. Solution: Check the first error, it is more relevant. Fix all the tests that rely on the old behavior.
2020-07-07patch 8.2.1151: insufficient test coverage for Pythonv8.2.1151Bram Moolenaar
Problem: Insufficient test coverage for Python. Solution: Add more test cases. (Yegappan Lakshmanan, closes #6415)
2020-07-07patch 8.2.1150: ml_get error when using Pythonv8.2.1150Bram Moolenaar
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".
2020-07-06patch 8.2.1146: not enough testing for Pythonv8.2.1146Bram Moolenaar
Problem: Not enough testing for Python. Solution: Add more tests. Fix uncovered problems. (Yegappan Lakshmanan, closes #6392)
2020-07-03patch 8.2.1123: Python 3 test is old stylev8.2.1123Bram Moolenaar
Problem: Python 3 test is old style. Solution: Turn into new style test. (Yegappan Lakshmanan, closes #6385)
2020-07-03patch 8.2.1120: Python code not tested properlyv8.2.1120Bram Moolenaar
Problem: Python code not tested properly. Solution: Add more tests and convert old-style test into new-style test. (Yegappan Lakshmanan, closes #6370)
2020-05-01patch 8.2.0672: heredoc in scripts does not accept lower case markerv8.2.0672Bram Moolenaar
Problem: Heredoc in scripts does not accept lower case marker. Solution: Allow lower case only in non-Vim scripts. (Ken Takata, closes #6019)
2020-04-14patch 8.2.0578: heredoc for interfaces does not support "trim"v8.2.0578Bram Moolenaar
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)
2019-12-11patch 8.1.2421: test88 is old stylev8.1.2421Bram Moolenaar
Problem: Test88 is old style. Solution: Turn into a new style test. (Yegappan Lakshmanan, closes #5347)
2019-09-04patch 8.1.1984: more functions can be used as methodsv8.1.1984Bram Moolenaar
Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
2019-06-15patch 8.1.1544: some balloon tests don't run when they canv8.1.1544Bram Moolenaar
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.
2019-06-13patch 8.1.1524: tests are silently skippedv8.1.1524Bram Moolenaar
Problem: Tests are silently skipped. Solution: Throw an exception for skipped tests in more places.
2019-05-18patch 8.1.1346: error for Python exception does not show useful infov8.1.1346Bram Moolenaar
Problem: Error for Python exception does not show useful info. Solution: Show the last line instead of the first one. (Ben Jackson, closes #4381)
2019-03-30patch 8.1.1074: Python test doesn't wipe out hidden bufferv8.1.1074Bram Moolenaar
Problem: Python test doesn't wipe out hidden buffer. Solution: Wipe out the buffer. (Ben Jackson, closes #4189)
2019-03-23patch 8.1.1045: E315 ml_get error when using Python and hidden bufferv8.1.1045Bram Moolenaar
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)
2019-02-18patch 8.1.0950: using :python sets 'pyxversion' even when not executedv8.1.0950Bram Moolenaar
Problem: Using :python sets 'pyxversion' even when not executed. Solution: Check the "skip" flag. (Shane Harper, closes #3995)
2018-12-22patch 8.1.0627: Python cannot handle function name of script-local functionv8.1.0627Bram Moolenaar
Problem: Python cannot handle function name of script-local function. Solution: Use <SNR> instead of the special byte code. (Ozaki Kiichi, closes #3681)
2018-07-25patch 8.1.0212: preferred cursor column not set in interfacesv8.1.0212Bram Moolenaar
Problem: Preferred cursor column not set in interfaces. Solution: Set w_set_curswant when setting the cursor. (David Hotham, closes #3060)
2017-01-29patch 8.0.0265: may get ml_get error when :pydo deletes linesv8.0.0265Bram Moolenaar
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.