summaryrefslogtreecommitdiffstats
path: root/runtime/doc/if_pyth.txt
AgeCommit message (Collapse)Author
2018-10-02Update runtime files.Bram Moolenaar
2018-09-02Update runtime files.Bram Moolenaar
2018-08-28Update runtime files.Bram Moolenaar
2018-07-29Update runtime files.Bram Moolenaar
2018-05-17Vim 8.1 releasev8.1.0000Bram Moolenaar
Update version number and information. Fix a couple of tests.
2018-02-09Update runtime files.Bram Moolenaar
2018-01-28Update runtime files.Bram Moolenaar
2017-12-10patch 8.0.1385: Python 3.5 is getting oldv8.0.1385Bram Moolenaar
Problem: Python 3.5 is getting old. Solution: Make Python 3.6 the default. (Ken Takata, closes #2429)
2017-11-11Update runtime files.Bram Moolenaar
2017-11-09patch 8.0.1280: Python None cannot be converted to a Vim typev8.0.1280Bram Moolenaar
Problem: Python None cannot be converted to a Vim type. Solution: Convert it to v:none. (Ken Takata)
2017-08-11Update runtime files.Bram Moolenaar
2017-03-16Update runtime files.Bram Moolenaar
2017-03-05Runtime file updates.Bram Moolenaar
2017-02-23patch 8.0.0360: sometimes VimL is used instead of "Vim script"v8.0.0360Bram Moolenaar
Problem: Sometimes VimL is used, which is confusing. Solution: Consistently use "Vim script". (Hirohito Higashi)
2017-02-17Updated runtime files.Bram Moolenaar
2017-01-28Update runtime files.Bram Moolenaar
2017-01-28patch 8.0.0251: not easy to select Python 2 or 3v8.0.0251Bram Moolenaar
Problem: It is not so easy to write a script that works with both Python 2 and Python 3, even when the Python code works with both. Solution: Add 'pyxversion', :pyx, etc. (Marc Weber, Ken Takata)
2016-09-22Updated runtime files.Bram Moolenaar
2016-09-12Vim 8.0 releasev8.0.0000Bram Moolenaar
2016-09-06Updated runtime files.Bram Moolenaar
2016-05-25patch 7.4.1843v7.4.1843Bram Moolenaar
Problem: Tests involving Python are flaky. Solution: Set the pt_auto field. Add tests. (Nikolai Pavlov)
2016-04-21Updated runtime files.Bram Moolenaar
2016-04-14patch 7.4.1731v7.4.1731Bram Moolenaar
Problem: Python: turns partial into simple funcref. Solution: Use partials like partials. (Nikolai Pavlov, closes #734)
2016-03-20Updated runtime files.Bram Moolenaar
2015-11-10Updated runtime files.Bram Moolenaar
2015-11-02patch 7.4.907v7.4.907Bram Moolenaar
Problem: Libraries for dynamically loading interfaces can only be defined at compile time. Solution: Add options to specify the dll names. (Kazuki Sakamoto, closes #452)
2014-07-26Update runtime files. Add vroom file support.Bram Moolenaar
2013-08-10release version 7.4v7.4Bram Moolenaar
2013-07-28Update files for the 7.4b BETA release.v7.4b.000Bram Moolenaar
2013-07-17Updated runtime files.Bram Moolenaar
2013-07-06Vim 7.4a BETA release.v7.4aBram Moolenaar
2013-07-01updated for version 7.3.1287v7.3.1287Bram Moolenaar
Problem: Python SystemExit exception is not handled properly. Solution: Catch the exception and give an error. (Yasuhiro Matsumoto, Ken Takata)
2013-06-29Updated runtime files.Bram Moolenaar
2013-06-12updated for version 7.3.1174v7.3.1174Bram Moolenaar
Problem: Python 2 and 3 use different ways to load modules. Solution: Use the same method. (ZyX)
2013-06-12updated for version 7.3.1172v7.3.1172Bram Moolenaar
Problem: Python 2: loading modules doesn't work well. Solution: Fix the code. Add more tests. (ZyX)
2013-06-10updated for version 7.3.1163v7.3.1163Bram Moolenaar
Problem: Not easy to load Python modules. Solution: Search "python2", "python3" and "pythonx" directories in 'runtimepath' for Python modules. (ZyX)
2013-06-06Updated runtime files.Bram Moolenaar
2013-06-02updated for version 7.3.1099v7.3.1099Bram Moolenaar
Problem: Python: Changing directory with os.chdir() causes problems for Vim's notion of directories. Solution: Add vim.chdir() and vim.fchdir(). (ZyX)
2013-06-02updated for version 7.3.1097v7.3.1097Bram Moolenaar
Problem: Python: a few recently added items are not documented. Solution: Update the documentation. (ZyX)
2013-06-02updated for version 7.3.1096v7.3.1096Bram Moolenaar
Problem: Python: popitem() was not defined in a standard way. Solution: Remove the argument from popitem(). (ZyX)
2013-06-01Updated runtime files and translations.Bram Moolenaar
2013-05-30updated for version 7.3.1067v7.3.1067Bram Moolenaar
Problem: Python: documentation lags behind. Solution: Python patch 26. (ZyX)
2013-05-30updated for version 7.3.1061v7.3.1061Bram Moolenaar
Problem: Python: Dictionary is not standard. Solution: Python patch 20: Add standard methods and fields. (ZyX)
2013-05-29updated for version 7.3.1042v7.3.1042Bram Moolenaar
Problem: Python: can't assign to vim.Buffer.name. Solution: Python patch 3. (ZyX)
2013-05-21Updated runtime files, language files and translations.Bram Moolenaar
2013-05-21updated for version 7.3.996v7.3.996Bram Moolenaar
Problem: Python: Can't check types of what is returned by bindeval(). Solution: Add vim.List, vim.Dictionary and vim.Function types. (ZyX)
2013-05-17Update runtime files.Bram Moolenaar
2013-05-17updated for version 7.3.966v7.3.966Bram Moolenaar
Problem: There is ":py3do" but no ":pydo". Solution: Add the ":pydo" command. (Lilydjwg)
2013-05-17updated for version 7.3.964v7.3.964Bram Moolenaar
Problem: Python: not so easy to access tab pages. Solution: Add window.tabpage, make window.number work with non-current tab pages. (ZyX)
2013-05-15updated for version 7.3.957v7.3.957Bram Moolenaar
Problem: Python does not have a "do" command like Perl or Lua. Solution: Add the ":py3do" command. (Lilydjwg)