Bram Moolenaar
69afb7bf0a
updated for version 7.3.1092
...
Problem: Can't build with regexp debugging. NFA debug output shows wrong
pattern.
Solution: Fix debugging code for recent changes. Add the pattern to the
program.
v7.3.1092
2013-06-02 15:55:55 +02:00
Bram Moolenaar
5de820b916
updated for version 7.3.1091
...
Problem: New regexp engine: no error when using \z1 or \z( where it does
not work.
Solution: Give an error message.
v7.3.1091
2013-06-02 15:01:57 +02:00
Bram Moolenaar
efb23f26e8
updated for version 7.3.1090
...
Problem: New regexp engine does not support \z1 .. \z9 and \z(.
Solution: Implement the syntax submatches.
v7.3.1090
2013-06-01 23:02:54 +02:00
Bram Moolenaar
0418811869
updated for version 7.3.1089
...
Problem: Tests 86 and 87 fail on MS-Windows. (Ken Takata)
Solution: Fix platform-specific stuff. (ZyX)
v7.3.1089
2013-06-01 20:32:12 +02:00
Bram Moolenaar
61602c5bfe
updated for version 7.3.1088
...
Problem: New regexp engine: \@<= and \@<! are not implemented.
Solution: Implement look-behind matching. Fix off-by-one error in old
regexp engine.
v7.3.1088
2013-06-01 19:54:43 +02:00
Bram Moolenaar
543b7ef700
Updated runtime files and translations.
2013-06-01 14:50:56 +02:00
Bram Moolenaar
3737fc1c30
updated for version 7.3.1087
...
Problem: A leading star is not seen as a normal char when \{} follows.
Solution: Save and restore the parse state properly.
v7.3.1087
2013-06-01 14:42:56 +02:00
Bram Moolenaar
75d7a06920
updated for version 7.3.1086
...
Problem: Old regexp engine accepts illegal range, new one doesn't.
Solution: Also accept the illegal range with the new engine.
v7.3.1086
2013-06-01 13:24:24 +02:00
Bram Moolenaar
36b3a011d3
updated for version 7.3.1085
...
Problem: New regexp engine: Non-greedy multi doesn't work.
Solution: Implement \{-}.
v7.3.1085
2013-06-01 12:40:20 +02:00
Bram Moolenaar
54dafde170
updated for version 7.3.1084
...
Problem: New regexp engine: only accepts up to \{,10}.
Solution: Remove upper limit. Remove dead code with NFA_PLUS.
v7.3.1084
2013-05-31 23:18:00 +02:00
Bram Moolenaar
4b78063368
updated for version 7.3.1083
...
Problem: New regexp engine: Does not support \%^ and \%$.
Solution: Support matching start and end of file.
v7.3.1083
2013-05-31 22:14:52 +02:00
Bram Moolenaar
14f55c6f67
updated for version 7.3.1082
...
Problem: New regexp engine: Problem with \@= matching.
Solution: Save and restore nfa_match.
v7.3.1082
2013-05-31 21:45:09 +02:00
Bram Moolenaar
99dc19d1cc
updated for version 7.3.1081
...
Problem: Compiler warnings on 64-bit Windows.
Solution: Change variable types. (Mike Williams)
v7.3.1081
2013-05-31 20:49:31 +02:00
Bram Moolenaar
ca982c8d45
updated for version 7.3.1080
...
Problem: Test 86 fails.
Solution: Comment out the parts that don't work. Make it pass on 32 bit
systems.
v7.3.1080
2013-05-31 19:01:16 +02:00
Bram Moolenaar
96c7dfd806
updated for version 7.3.1079
...
Problem: Test 87 fails.
Solution: Fix the test for Python 3.3. (ZyX) Make it pass on 32 bit systems.
v7.3.1079
2013-05-31 18:46:11 +02:00
Bram Moolenaar
b06e20e6ba
updated for version 7.3.1078
...
Problem: New regexp engine: \@! doesn't work.
Solution: Implement the negated version of \@=.
v7.3.1078
2013-05-30 22:44:02 +02:00
Bram Moolenaar
35eacd7180
updated for version 7.3.1077
...
Problem: Python: Allocating dict the wrong way, causing a crash.
Solution: Use py_dict_alloc(). Fix some exception problems. (ZyX)
v7.3.1077
2013-05-30 22:06:33 +02:00
Bram Moolenaar
2d5e112284
updated for version 7.3.1076
...
Problem: New regexp engine: \@= and \& don't work.
Solution: Make these items work. Add column info to logging.
v7.3.1076
2013-05-30 21:42:13 +02:00
Bram Moolenaar
021e147b70
updated for version 7.3.1075
...
Problem: Compiler warning for storing a long_u in an int.
Solution: Declare the number as an int. (Mike Williams)
v7.3.1075
2013-05-30 19:18:31 +02:00
Bram Moolenaar
f62d942e54
updated for version 7.3.1074
...
Problem: Compiler warning for printf format. (Manuel Ortega)
Solution: Add type casts.
v7.3.1074
2013-05-30 19:01:24 +02:00
Bram Moolenaar
16299b57cb
updated for version 7.3.1073
...
Problem: New regexp engine may run out of states.
Solution: Allocate states dynamically. Also make the test report errors.
v7.3.1073
2013-05-30 18:45:23 +02:00
Bram Moolenaar
4b6ebe6dce
updated for version 7.3.1072
...
Problem: Compiler warning for unitialized variable.
Solution: Initialize it.
v7.3.1072
2013-05-30 17:49:24 +02:00
Bram Moolenaar
428e987b61
updated for version 7.3.1071
...
Problem: New regexp engine: backreferences don't work correctly.
Solution: Add every possible start/end position on the state stack.
v7.3.1071
2013-05-30 17:05:39 +02:00
Bram Moolenaar
fdde880b02
updated for version 7.3.1070
...
Problem: Vim crashes in Python tests. Compiler warning for unused function.
Solution: Disable the tests for now. Move the function.
v7.3.1070
2013-05-30 15:38:24 +02:00
Bram Moolenaar
fc714b35c6
updated for version 7.3.1069
...
Problem: Python: memory leaks.
Solution: Python patch 28: Purge out DICTKEY_CHECK_EMPTY macros. (ZyX)
v7.3.1069
2013-05-30 14:52:37 +02:00
Bram Moolenaar
018acca3bd
updated for version 7.3.1068
...
Problem: Python: Script is auto-loaded on function creation.
Solution: Python patch 27. (ZyX)
v7.3.1068
2013-05-30 13:37:28 +02:00
Bram Moolenaar
305b2fde13
updated for version 7.3.1067
...
Problem: Python: documentation lags behind.
Solution: Python patch 26. (ZyX)
v7.3.1067
2013-05-30 13:32:30 +02:00
Bram Moolenaar
8600e40a67
updated for version 7.3.1066
...
Problem: Python: Insufficient exception and error testing.
Solution: Python patch 25. (ZyX)
v7.3.1066
2013-05-30 13:28:41 +02:00
Bram Moolenaar
bcb40977c3
updated for version 7.3.1065
...
Problem: Python: key mapping is not standard.
Solution: Puthon patch 24: use PyMapping_Keys. (ZyX)
v7.3.1065
2013-05-30 13:22:13 +02:00
Bram Moolenaar
494ff7e850
updated for version 7.3.1064
...
Problem: Python: insufficient error checking.
Solution: Python patch 23. (ZyX)
v7.3.1064
2013-05-30 13:17:17 +02:00
Bram Moolenaar
355fd9b468
updated for version 7.3.1063
...
Problem: Python: Function is not standard.
Solution: Python patch 22: make Function subclassable. (ZyX)
v7.3.1063
2013-05-30 13:14:13 +02:00
Bram Moolenaar
78cddbe271
updated for version 7.3.1062
...
Problem: Python: List is not standard.
Solution: Python patch 21: Add standard methods and fields. (ZyX)
v7.3.1062
2013-05-30 13:05:58 +02:00
Bram Moolenaar
a9922d62e6
updated for version 7.3.1061
...
Problem: Python: Dictionary is not standard.
Solution: Python patch 20: Add standard methods and fields. (ZyX)
v7.3.1061
2013-05-30 13:01:18 +02:00
Bram Moolenaar
a5b725c3f6
updated for version 7.3.1060
...
Problem: Python: can't repr() a function.
Solution: Python patch 19: add FunctionRepr(). (ZyX)
v7.3.1060
2013-05-30 12:43:54 +02:00
Bram Moolenaar
1a3b56953e
updated for version 7.3.1059
...
Problem: Python: Using fixed size buffers.
Solution: Python patch 18: Use python's own formatter. (ZyX)
v7.3.1059
2013-05-30 12:40:39 +02:00
Bram Moolenaar
a1544c00c8
updated for version 7.3.1058
...
Problem: Call of funcref does not succeed in other script.
Solution: Python patch 17: add get_expanded_name(). (ZyX)
v7.3.1058
2013-05-30 12:35:52 +02:00
Bram Moolenaar
01a7a720ad
updated for version 7.3.1057
...
Problem: Python: not enough compatibilty.
Solution: Python patch 16: Make OutputWritelines support any sequence object
(ZyX) Note: tests fail
v7.3.1057
2013-05-30 12:26:58 +02:00
Bram Moolenaar
9bb77d6fe6
updated for version 7.3.1056
...
Problem: Python: possible memory leaks.
Solution: Python patch 15. (ZyX) Fix will follow later.
v7.3.1056
2013-05-30 12:14:49 +02:00
Bram Moolenaar
bad704fa04
updated for version 7.3.1055
...
Problem: Negated collection does not match newline.
Solution: Handle newline differently. (Hiroshi Shirosaki)
v7.3.1055
2013-05-30 11:51:08 +02:00
Bram Moolenaar
7e28384a9a
updated for version 7.3.1054
...
Problem: Can't build without the +autocmd feature. (Elimar Riesebieter)
Solution: Fix use of buf and curbuf.
v7.3.1054
2013-05-30 11:43:15 +02:00
Bram Moolenaar
07b8864111
updated for version 7.3.1053
...
Problem: Python: no flag for types with tp_traverse+tp_clear.
Solution: Python patch 14: Add Py_TPFLAGS_HAVE_GC. (ZyX)
v7.3.1053
2013-05-29 22:58:32 +02:00
Bram Moolenaar
1bcabe19a2
updated for version 7.3.1052
...
Problem: Python: possible SEGV and negative refcount.
Solution: Python patch 13: Fix IterIter function. (ZyX)
v7.3.1052
2013-05-29 22:52:32 +02:00
Bram Moolenaar
a03e631120
updated for version 7.3.1051
...
Problem: Python: possible memory leaks.
Solution: Python patch 12: fix the leaks (ZyX)
v7.3.1051
2013-05-29 22:49:26 +02:00
Bram Moolenaar
c8366790e8
updated for version 7.3.1050
...
Problem: Python: Typo in pyiter_to_tv.
Solution: Python patch 11. (ZyX)
v7.3.1050
2013-05-29 22:46:26 +02:00
Bram Moolenaar
c37b6ecd60
updated for version 7.3.1049
...
Problem: Python: no consistent naming
Solution: Python patch 10: Rename DICTKEY_GET_NOTEMPTY to DICTKEY_GET. (ZyX)
v7.3.1049
2013-05-29 22:43:37 +02:00
Bram Moolenaar
b38caae26c
updated for version 7.3.1048
...
Problem: Python: no consistent naming.
Solution: Python patch 9: Rename d to dict and lookupDict to lookup_dict.
(ZyX)
v7.3.1048
2013-05-29 22:39:52 +02:00
Bram Moolenaar
dd8aca664d
updated for version 7.3.1047
...
Problem: Python: dir() does not work properly.
Solution: Python patch 8. Add __dir__ method to all objects with custom
tp_getattr supplemented by __members__ attribute for at least
python-2* versions. __members__ is not mentioned in python-3*
dir() output even if it is accessible. (ZyX)
v7.3.1047
2013-05-29 22:36:10 +02:00
Bram Moolenaar
432b09c84d
updated for version 7.3.1046
...
Problem: Python: Using Py_BuildValue for building strings.
Solution: Python patch 7 and 7.5: Replace Py_BuildValue with
PyString_FromString. (ZyX)
v7.3.1046
2013-05-29 22:26:18 +02:00
Bram Moolenaar
21642ed1b4
updated for version 7.3.1045
...
Problem: Python: No error handling for VimToPython function.
Solution: Python patch 6. (ZyX)
v7.3.1045
2013-05-29 22:20:01 +02:00
Bram Moolenaar
9e822c00b1
updated for version 7.3.1044
...
Problem: Python: No {Buffer,TabPage,Window}.valid attributes.
Solution: Python patch 5: add .valid (ZyX)
v7.3.1044
2013-05-29 22:15:30 +02:00